feat: support oidc picture if available

This commit is contained in:
Aarnav Tale
2025-03-11 15:35:11 -04:00
parent 5f6460f42f
commit 9c8a2c0120
3 changed files with 15 additions and 2 deletions
+1
View File
@@ -130,6 +130,7 @@ export async function finishAuthFlow(oidc: OidcConfig, options: FlowOptions) {
name: getName(user, claims),
email: user.email ?? claims.email?.toString(),
username: user.preferred_username ?? claims.preferred_username?.toString(),
picture: user.picture,
};
}
+1
View File
@@ -12,6 +12,7 @@ export type SessionData = {
name: string;
email?: string;
username?: string;
picture?: string;
};
};