refactor(editor): Remove legacy audit logs view (no-changelog) (#9053)

This commit is contained in:
Iván Ovejero
2024-04-05 10:23:27 +02:00
committed by GitHub
parent 637b6c4d3e
commit ba986fb018
6 changed files with 1 additions and 147 deletions

View File

@@ -83,14 +83,7 @@ export default defineComponent({
available: this.canAccessExternalSecrets(),
route: { to: { name: VIEWS.EXTERNAL_SECRETS_SETTINGS } },
},
{
id: 'settings-audit-logs',
icon: 'clipboard-list',
label: this.$locale.baseText('settings.auditLogs.title'),
position: 'top',
available: this.canAccessAuditLogs(),
route: { to: { name: VIEWS.AUDIT_LOGS } },
},
{
id: 'settings-source-control',
icon: 'code-branch',
@@ -189,9 +182,6 @@ export default defineComponent({
canAccessSourceControl(): boolean {
return this.canUserAccessRouteByName(VIEWS.SOURCE_CONTROL);
},
canAccessAuditLogs(): boolean {
return this.canUserAccessRouteByName(VIEWS.AUDIT_LOGS);
},
canAccessSso(): boolean {
return this.canUserAccessRouteByName(VIEWS.SSO_SETTINGS);
},