From 0663bd0803969f3e352e6ba86b1cc7419f7433cb Mon Sep 17 00:00:00 2001 From: Paul Rosenzweig <paulrosenzweig@users.noreply.github.com> Date: Tue, 21 Apr 2020 09:42:14 -0400 Subject: [PATCH] refresh site settings after logging in with google (#12360) --- frontend/src/metabase/auth/auth.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/metabase/auth/auth.js b/frontend/src/metabase/auth/auth.js index 1a38018925d..f0a09e3abd7 100644 --- a/frontend/src/metabase/auth/auth.js +++ b/frontend/src/metabase/auth/auth.js @@ -48,7 +48,10 @@ export const loginGoogle = createThunkAction(LOGIN_GOOGLE, function( MetabaseAnalytics.trackEvent("Auth", "Google Auth Login"); // TODO: redirect after login (carry user to intended destination) - await dispatch(refreshCurrentUser()); + await Promise.all([ + dispatch(refreshCurrentUser()), + dispatch(refreshSiteSettings()), + ]); dispatch(push(redirectUrl || "/")); } catch (error) { await clearGoogleAuthCredentials(); -- GitLab