Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] db96e0c23e fix(auth): change Discord OAuth2 prompt from consent to none
Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com>
2026-03-11 21:34:03 +00:00
copilot-swe-agent[bot] 092744229b Initial plan 2026-03-11 21:33:21 +00:00
+1 -1
View File
@@ -227,7 +227,7 @@ if (env.DISCORD_CLIENT_ID && env.DISCORD_CLIENT_SECRET) {
config.id,
passport.authenticate(config.id, {
scope,
prompt: "consent",
prompt: "none",
})
);
router.get(`${config.id}.callback`, passportMiddleware(config.id));