@ -147,7 +147,6 @@ class WireGuard {
privateKey,
publicKey,
preSharedKey,
endpoint: null,
oneTimeLink: null,
expiresAt: null,
enabled: true,
@ -68,7 +68,6 @@ export async function migrateConfig(input: unknown) {
privateKey: oldClient.privateKey,
publicKey: oldClient.publicKey,
updatedAt: oldClient.updatedAt,
allowedIPs: db.system.userConfig.allowedIps,
@ -14,7 +14,6 @@ export type Client = {
preSharedKey: string;
/** ISO String */
expiresAt: string | null;
endpoint: string | null;
allowedIPs: string[];
serverAllowedIPs: string[] | null;
oneTimeLink: OneTimeLink | null;