feat(auth, oidc): add user avatar URL to auth response and update redirect URLs to use frontend URL

This commit is contained in:
Daniel Volz
2025-12-28 02:08:34 +01:00
parent 3ffdb8a5fe
commit 5ad260a465
2 changed files with 31 additions and 14 deletions
+1
View File
@@ -215,6 +215,7 @@ export async function authRoutes(app: FastifyInstance) {
user: {
id: user.id,
username: user.username,
avatarUrl: user.avatarUrl,
},
});
});