working on user lost for admin

This commit is contained in:
2025-07-02 09:17:05 +02:00
parent 086f722074
commit 372cce43fa
7 changed files with 89 additions and 34 deletions

View File

@@ -4,6 +4,7 @@
import ClickInput from '../../Components/ClickInput.svelte';
import ClickSelect from '../../Components/ClickSelect.svelte';
import EditPassword from './EditPassword.svelte';
import UserList from './List.svelte';
let editPassword = false;
async function patch(changeset){
@@ -92,9 +93,6 @@
</fieldset>
{#if user.permissions.includes('LIST_USERS')}
<fieldset>
<legend>{t('user.list')}</legend>
User list goes here…
</fieldset>
<UserList />
{/if}