7355-accountMigration2 #619

Merged
carlossa merged 9 commits from 7355-accountMigration2 into dev 2024-08-13 13:10:39 +00:00
3 changed files with 8 additions and 20 deletions
Showing only changes of commit 40c3ba15e6 - Show all commits

View File

@ -123,13 +123,6 @@ const deleteAcl = async ({ id }) => {
</script> </script>
<template> <template>
<FetchData
url="VnRoles"
:filter="{ fields: ['name'], order: 'name ASC' }"
@on-fetch="(data) => (rolesOptions = data)"
auto-load
/>
<VnSearchbar <VnSearchbar
data-key="AccountAcls" data-key="AccountAcls"
url="ACLs" url="ACLs"

View File

@ -76,16 +76,12 @@ const exprBuilder = (param, value) => {
</script> </script>
<template> <template>
<template v-if="stateStore.isHeaderMounted()">
<Teleport to="#searchbar">
<VnSearchbar <VnSearchbar
data-key="Roles" data-key="Roles"
:expr-builder="exprBuilder" :expr-builder="exprBuilder"
:label="t('role.searchRoles')" :label="t('role.searchRoles')"
:info="t('role.searchInfo')" :info="t('role.searchInfo')"
/> />
</Teleport>
</template>
<VnTable <VnTable
ref="tableRef" ref="tableRef"
data-key="Roles" data-key="Roles"

View File

@ -22,9 +22,8 @@ const searchBarDataKeys = {
<VnCard <VnCard
data-key="Role" data-key="Role"
:descriptor="RoleDescriptor" :descriptor="RoleDescriptor"
:search-data-key="searchBarDataKeys[routeName]" search-data-key="AccountRoles"
:search-custom-route-redirect="customRouteRedirectName" search-url="VnRoles"
:search-redirect="!!customRouteRedirectName"
:searchbar-label="t('role.searchRoles')" :searchbar-label="t('role.searchRoles')"
:searchbar-info="t('role.searchInfo')" :searchbar-info="t('role.searchInfo')"
/> />