diff --git a/src/routes/console/[project]/authentication/__layout.svelte b/src/routes/console/[project]/authentication/__layout.svelte index a5ccdc10f..1cd29c7c1 100644 --- a/src/routes/console/[project]/authentication/__layout.svelte +++ b/src/routes/console/[project]/authentication/__layout.svelte @@ -3,7 +3,7 @@ import { updateLayout } from '$lib/stores/layout'; import { onMount } from 'svelte'; - const path = 'users'; + const path = 'authentication'; onMount(handle); afterNavigate(handle); @@ -28,10 +28,6 @@ href: `${path}/teams`, title: 'Teams' }, - { - href: `${path}/authentication`, - title: 'Authentication' - }, { href: `${path}/usage`, title: 'Usage' @@ -39,6 +35,10 @@ { href: `${path}/security`, title: 'Security' + }, + { + href: `${path}/settings`, + title: 'Settings' } ] }); diff --git a/src/routes/console/[project]/authentication/authentication.svelte b/src/routes/console/[project]/authentication/settings.svelte similarity index 100% rename from src/routes/console/[project]/authentication/authentication.svelte rename to src/routes/console/[project]/authentication/settings.svelte diff --git a/src/routes/console/[project]/authentication/teams/[team]/__layout.svelte b/src/routes/console/[project]/authentication/teams/[team]/__layout.svelte index 3e9540e70..d9ca9bb49 100644 --- a/src/routes/console/[project]/authentication/teams/[team]/__layout.svelte +++ b/src/routes/console/[project]/authentication/teams/[team]/__layout.svelte @@ -7,7 +7,7 @@ import { onMount } from 'svelte'; const teamId = $page.params.team; - const path = `users/teams/${teamId}`; + const path = `authentication/teams/${teamId}`; onMount(handle); afterNavigate(handle); diff --git a/src/routes/console/[project]/authentication/user/[user]/__layout.svelte b/src/routes/console/[project]/authentication/user/[user]/__layout.svelte index c3361abe4..dd75f563e 100644 --- a/src/routes/console/[project]/authentication/user/[user]/__layout.svelte +++ b/src/routes/console/[project]/authentication/user/[user]/__layout.svelte @@ -7,7 +7,7 @@ import { user } from './store'; const userId = $page.params.user; - const path = `users/user/${userId}`; + const path = `authentication/user/${userId}`; onMount(handle); afterNavigate(handle);