feat(users): allow profile picture change for external providers (#4275)

This commit is contained in:
Meier Lukas
2025-10-13 23:52:17 +02:00
committed by GitHub
parent 35a8ac820f
commit 5c86930220
4 changed files with 25 additions and 35 deletions

View File

@@ -61,6 +61,7 @@ export const OidcProvider = (headers: ReadonlyHeaders | null): OIDCConfig<Profil
id: profile.sub,
name,
email: profile.email,
image: typeof profile.picture === "string" ? profile.picture : null,
provider: "oidc",
};
},