From f799758a6f6bfc036b03a7567d83ccbaae00a9c1 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 3 Jan 2021 08:54:47 -0800 Subject: [PATCH] feat: Allow Google sign-in users to choose account Alternative to https://github.com/outline/outline/pull/1763 --- server/auth/google.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/auth/google.js b/server/auth/google.js index 74cd8f509..6bad65183 100644 --- a/server/auth/google.js +++ b/server/auth/google.js @@ -27,7 +27,7 @@ router.get("google", async (ctx) => { "https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/userinfo.email", ], - prompt: "consent", + prompt: "select_account consent", }); ctx.redirect(authorizeUrl); });