Browse Source

refactor(gui-v2): corrections

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/3254/head
Pranav C 2 years ago
parent
commit
11905af69b
  1. 4
      packages/nc-gui-v2/middleware/auth.global.ts

4
packages/nc-gui-v2/middleware/auth.global.ts

@ -33,9 +33,11 @@ export default defineNuxtRouteMiddleware((to, from) => {
/** if auth is required or unspecified (same as required) and user is not signed in, redirect to signin page */
if ((to.meta.requiresAuth || typeof to.meta.requiresAuth === 'undefined') && !state.signedIn.value) {
if (state.appInfo?.value?.firstUser) {
/** If this is the first usern navigate to signup page directly */
if (state.appInfo.value.firstUser) {
return navigateTo('/signup')
}
return navigateTo('/signin')
} else if (to.meta.requiresAuth === false && state.signedIn.value) {
/**

Loading…
Cancel
Save