@if (authService.oneActionAllowed(["assign", "unassign", "enable", "disable", "container_remove_token", "delete"])) {
Token Actions
@if (authService.actionAllowed("assign")) {
}
@if (authService.actionAllowed("unassign")) {
}
@if (authService.oneActionAllowed(["assign", "unassign"]) && authService.oneActionAllowed(["enable", "disable"])) {
}
@if (authService.actionAllowed("enable")) {
}
@if (authService.actionAllowed("disable")) {
}
@if (
authService.oneActionAllowed(["enable", "disable", "unassign", "assign"]) &&
authService.oneActionAllowed(["container_template_list", "container_remove_token", "delete"])
) {
}
@if (authService.actionAllowed("container_remove_token")) {
}
@if (authService.actionAllowed("delete")) {
}
}