fix(editor): Redirect to home page after saving data on SAML onboarding page (no-changelog) (#5961)

fix(editor): redirect to home page after saving data on SAML onboarding page
This commit is contained in:
Csaba Tuncsik
2023-04-13 09:32:06 +02:00
committed by GitHub
parent 303521a0e2
commit 02ab1e7eef
2 changed files with 22 additions and 2 deletions

View File

@@ -68,6 +68,8 @@ export const useSSOStore = defineStore('sso', () => {
...params,
});
const userData = computed(() => usersStore.currentUser);
return {
isLoading,
setLoading,
@@ -80,5 +82,6 @@ export const useSSOStore = defineStore('sso', () => {
saveSamlConfig,
testSamlConfig,
updateUser,
userData,
};
});