Skip to content

Commit 0c7f684

Browse files
aravinths1sivaprabug
authored andcommitted
Remove NoAccess references from privilege roles
The NoAccess privilege is not supported according to the Redfish schema, yet residual UI privilege role definitions still referenced it. This commit cleans up remaining code fragments that displayed NoAccess-related descriptions in the web UI. Resolves discrepancies between schema and UI by aligning privilege role displays with Redfish standards, reducing user confusion. Change-Id: I1f21630019407e9b2bf223d2336bc110a6bfafab Signed-off-by: Aravinth Sri Krishna Raja Raghavan <[email protected]>
1 parent 7d65f08 commit 0c7f684

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/views/SecurityAndAccess/UserManagement/TableRoles.vue

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
<checkmark20 />
1616
</template>
1717
</template>
18-
<template #cell(noaccess)="data">
19-
<template v-if="data.value">
20-
<checkmark20 />
21-
</template>
22-
</template>
2318
</b-table>
2419
</template>
2520

@@ -41,7 +36,6 @@ export default {
4136
administrator: true,
4237
operator: true,
4338
readonly: false,
44-
noaccess: false,
4539
},
4640
{
4741
description: i18n.global.t(
@@ -50,7 +44,6 @@ export default {
5044
administrator: true,
5145
operator: false,
5246
readonly: false,
53-
noaccess: false,
5447
},
5548
{
5649
description: i18n.global.t(
@@ -59,7 +52,6 @@ export default {
5952
administrator: true,
6053
operator: true,
6154
readonly: true,
62-
noaccess: false,
6355
},
6456
{
6557
description: i18n.global.t(
@@ -68,7 +60,6 @@ export default {
6860
administrator: true,
6961
operator: false,
7062
readonly: false,
71-
noaccess: false,
7263
},
7364
{
7465
description: i18n.global.t(
@@ -77,7 +68,6 @@ export default {
7768
administrator: true,
7869
operator: true,
7970
readonly: true,
80-
noaccess: false,
8171
},
8272
],
8373
fields: [
@@ -100,11 +90,6 @@ export default {
10090
label: i18n.global.t('pageUserManagement.tableRoles.readOnly'),
10191
class: 'text-center',
10292
},
103-
{
104-
key: 'noaccess',
105-
label: i18n.global.t('pageUserManagement.tableRoles.noAccess'),
106-
class: 'text-center',
107-
},
10893
],
10994
};
11095
},

0 commit comments

Comments
 (0)