refactor(server): improve magic link login flow (#10736)

This commit is contained in:
fengmk2
2025-03-12 06:53:29 +00:00
parent 867ae7933f
commit 43712839fd
9 changed files with 149 additions and 15 deletions

View File

@@ -3,6 +3,7 @@ export interface AuthPlugin {
endpoint: string;
email: string;
token: string;
clientNonce?: string;
}): Promise<{ token: string }>;
signInOauth(options: {
endpoint: string;