feat: implement discord oauth flow

This commit is contained in:
mrjvs
2026-08-09 18:22:26 +02:00
parent dcf00f5ec9
commit 735a723328
8 changed files with 116 additions and 2 deletions

View File

@@ -33,6 +33,10 @@ export type ApiAuthLogin = {
refreshToken: string;
};
export type ApiAccountDiscordLink = {
url: string
};
export const LoginSchema = z.object({
username: z.string(),
password: z.string()