Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[navigation]feat: update title and descriptions #2084

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export class SecurityPlugin
if (core.chrome.navGroup.getNavGroupEnabled()) {
core.application.register({
id: PLUGIN_GET_STARTED_APP_ID,
title: 'Get Started',
title: 'Get started with access control',
order: 8040,
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
Expand All @@ -198,8 +198,11 @@ export class SecurityPlugin
});
core.application.register({
id: PLUGIN_AUTH_APP_ID,
title: 'Authentication',
title: 'Authentication and authorization',
order: 8040,
description: i18n.translate('security.authenticationAndAuthorization.description', {
defaultMessage: 'Set up authentication and authorization sequences.',
}),
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
mount: async (params: AppMountParameters) => {
Expand All @@ -210,6 +213,9 @@ export class SecurityPlugin
id: PLUGIN_ROLES_APP_ID,
title: 'Roles',
order: 8040,
description: i18n.translate('security.roles.description', {
defaultMessage: 'Create a set of permissions with specific privileges.',
}),
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
mount: async (params: AppMountParameters) => {
Expand All @@ -220,6 +226,9 @@ export class SecurityPlugin
id: PLUGIN_USERS_APP_ID,
title: 'Internal users',
order: 8040,
description: i18n.translate('security.internalUsers.description', {
defaultMessage: 'Define users to control access to your data.',
}),
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
mount: async (params: AppMountParameters) => {
Expand All @@ -230,6 +239,9 @@ export class SecurityPlugin
id: PLUGIN_PERMISSIONS_APP_ID,
title: 'Permissions',
order: 8040,
description: i18n.translate('security.permissions.description', {
defaultMessage: 'Controls access to individual actions and action groups.',
}),
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
mount: async (params: AppMountParameters) => {
Expand All @@ -252,6 +264,9 @@ export class SecurityPlugin
id: PLUGIN_AUDITLOG_APP_ID,
title: 'Audit logs',
order: 8040,
description: i18n.translate('security.auditLogs.description', {
defaultMessage: 'Configure audit logging for system access activities.',
}),
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
updater$: this.appStateUpdater,
mount: async (params: AppMountParameters) => {
Expand All @@ -264,30 +279,37 @@ export class SecurityPlugin
{
id: PLUGIN_GET_STARTED_APP_ID,
category: dataAccessUsersCategory,
order: 100,
},
{
id: PLUGIN_AUTH_APP_ID,
category: dataAccessUsersCategory,
order: 200,
},
{
id: PLUGIN_ROLES_APP_ID,
category: dataAccessUsersCategory,
order: 500,
},
{
id: PLUGIN_USERS_APP_ID,
category: dataAccessUsersCategory,
order: 300,
},
{
id: PLUGIN_PERMISSIONS_APP_ID,
category: dataAccessUsersCategory,
order: 400,
},
{
id: PLUGIN_TENANTS_APP_ID,
category: dataAccessUsersCategory,
order: 700,
},
{
id: PLUGIN_AUDITLOG_APP_ID,
category: dataAccessUsersCategory,
order: 600,
},
]);

Expand Down
Loading