Skip to content

Commit

Permalink
changed category from configure to detect
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <[email protected]>
  • Loading branch information
riysaxen-amzn committed Jul 21, 2024
1 parent 8589927 commit ab88332
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class SecurityAnalyticsPlugin
},
{
id: `PLUGIN_NAME`,
category: DEFAULT_APP_CATEGORIES.detect,
category: DEFAULT_APP_CATEGORIES.configure,
showInAllNavGroup: true
},
])
Expand Down Expand Up @@ -123,7 +123,7 @@ export class SecurityAnalyticsPlugin
id: DETECTORS_NAV_ID,
title: 'Threat detectors',
order: 9080,
category: DEFAULT_APP_CATEGORIES.detect,
category: DEFAULT_APP_CATEGORIES.configure,
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
mount: async (params: AppMountParameters) => {
return mountWrapper(params, ROUTES.DETECTORS);
Expand All @@ -134,7 +134,7 @@ export class SecurityAnalyticsPlugin
id: DETECTORS_RULE_NAV_ID,
title: 'Detection rules',
order: 9080,
category: DEFAULT_APP_CATEGORIES.detect,
category: DEFAULT_APP_CATEGORIES.configure,
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
mount: async (params: AppMountParameters) => {
return mountWrapper(params, ROUTES.RULES);
Expand All @@ -156,7 +156,7 @@ export class SecurityAnalyticsPlugin
id: THREAT_INTEL_NAV_ID,
title: 'Threat intelligence',
order: 9080,
category: DEFAULT_APP_CATEGORIES.detect,
category: DEFAULT_APP_CATEGORIES.configure,
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
mount: async (params: AppMountParameters) => {
return mountWrapper(params, ROUTES.THREAT_INTEL_OVERVIEW);
Expand All @@ -167,7 +167,7 @@ export class SecurityAnalyticsPlugin
id: LOG_TYPES_NAV_ID,
title: 'Log types',
order: 9080,
category: DEFAULT_APP_CATEGORIES.detect,
category: DEFAULT_APP_CATEGORIES.configure,
workspaceAvailability: WorkspaceAvailability.outsideWorkspace,
mount: async (params: AppMountParameters) => {
return mountWrapper(params, ROUTES.LOG_TYPES);
Expand Down

0 comments on commit ab88332

Please sign in to comment.