mirror of
https://github.com/open-webui/open-webui
synced 2024-11-22 08:07:55 +00:00
fix: user workspace behaviour
This commit is contained in:
parent
e65ec1c6cc
commit
892f6ba42b
@ -1,8 +1,23 @@
|
||||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import { user } from '$lib/stores';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
onMount(() => {
|
||||
if ($user?.role !== 'admin') {
|
||||
if ($user?.permissions?.workspace?.models) {
|
||||
goto('/workspace/models');
|
||||
} else if ($user?.permissions?.workspace?.knowledge) {
|
||||
goto('/workspace/knowledge');
|
||||
} else if ($user?.permissions?.workspace?.prompts) {
|
||||
goto('/workspace/prompts');
|
||||
} else if ($user?.permissions?.workspace?.tools) {
|
||||
goto('/workspace/tools');
|
||||
} else {
|
||||
goto('/');
|
||||
}
|
||||
} else {
|
||||
goto('/workspace/models');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user