You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to be able to have a server side filter with id=not_1|not_2.
Example: on RolePage, when we are on roles tab, and click on attach role button → inside the table in the dialog, we do not want to show the current role nor the SUPER_ADMINISTRATOR role.
Inside AttachAccessControlToAnotherDialog.vue
/** * Load roles and invoke the appropriate method from RoleService based on the entity value. * @returns {object} Object that contains role filters. */asyncfunctionloadRoles(){if(targetAccessControlType.value==='role'){returnRoleService.find({id: `not_${superAdministratorId.value}`,// here add |not_${accessControl.value.id}
...getFilters(),});}
...
}
The text was updated successfully, but these errors were encountered:
Describe the bug
We need to be able to have a server side filter with
id=not_1|not_2
.Example: on
RolePage
, when we are onroles
tab, and click onattach role
button → inside the table in the dialog, we do not want to show the current role nor the SUPER_ADMINISTRATOR role.Inside
AttachAccessControlToAnotherDialog.vue
The text was updated successfully, but these errors were encountered: