1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Remove unnecessary initialisation

This commit is contained in:
adrinr 2023-04-17 09:49:11 +01:00
parent 965a417a21
commit 4a67136c72
2 changed files with 0 additions and 4 deletions

View file

@ -75,9 +75,7 @@
let loaded = false
let editModal, deleteModal
let scimEnabled = false
$: scimEnabled = $features.isScimEnabled
$: readonly = !$auth.isAdmin || scimEnabled
$: page = $pageInfo.page
$: fetchUsers(page, searchTerm)

View file

@ -86,9 +86,7 @@
let user
let loaded = false
let scimEnabled = false
$: scimEnabled = $features.isScimEnabled
$: isSSO = !!user?.provider
$: readonly = !$auth.isAdmin || scimEnabled
$: privileged = user?.admin?.global || user?.builder?.global