feat: implement discord role syncing

This commit is contained in:
mrjvs
2026-08-09 19:30:25 +02:00
parent 735a723328
commit 87d2b6357b
5 changed files with 54 additions and 3 deletions

View File

@@ -4,6 +4,8 @@ export type AuthContext = {
pid: number;
username: string;
token: string;
email: string;
accessLevel: number;
};
export function setAuthContext(event: H3Event, context: AuthContext | null): void {