Skip to content

Commit

Permalink
feat: update title and descriptions (#2084)
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhou-Joe <suzhou@amazon.com>
(cherry picked from commit a13b2e6)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Aug 13, 2024
1 parent f70ab36 commit 9a3cd87
Showing 1 changed file with 24 additions and 2 deletions.
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

0 comments on commit 9a3cd87

Please sign in to comment.