feat: Add route for each tab in Settings
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
<script>
|
||||
import { goto } from '$app/navigation';
|
||||
import { onMount } from 'svelte';
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
|
||||
onMount(() => {
|
||||
goto('/admin/settings/general');
|
||||
});
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
|
||||
5
src/routes/(app)/admin/settings/audio/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/audio/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/connections/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/connections/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/db/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/db/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/documents/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/documents/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/evaluations/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/evaluations/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/general/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/general/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/images/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/images/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/interface/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/interface/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/models/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/models/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/pipelines/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/pipelines/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/tools/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/tools/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
5
src/routes/(app)/admin/settings/web/+page.svelte
Normal file
5
src/routes/(app)/admin/settings/web/+page.svelte
Normal file
@@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Settings from '$lib/components/admin/Settings.svelte';
|
||||
</script>
|
||||
|
||||
<Settings />
|
||||
Reference in New Issue
Block a user