Skip to content

Commit

Permalink
Merge pull request #253 from cryptomator/feature/admin-skip-setup
Browse files Browse the repository at this point in the history
Allow Access to `/app/admin/settings` Before Finishing Onboarding
  • Loading branch information
overheadhunter committed Jan 26, 2024
2 parents 5c1cf28 + a070367 commit 94ebb6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ const routes: RouteRecordRaw[] = [
{
path: 'settings',
component: AdminSettings,
props: (route) => ({ token: route.query.token })
props: (route) => ({ token: route.query.token }),
meta: { skipSetup: true }
},
{
path: 'auditlog',
Expand Down

0 comments on commit 94ebb6b

Please sign in to comment.