feat(ui): add Customer Support link to sidebar (#9143)

This commit is contained in:
Alejandro Bailo
2025-11-03 16:01:11 +01:00
committed by GitHub
parent a564d6a04e
commit 000b48b492
2 changed files with 10 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ All notable changes to the **Prowler UI** are documented in this file.
### 🚀 Added
- RSS feeds support [(#9109)](https://github.com/prowler-cloud/prowler/pull/9109)
- Customer Support menu item [(#9143)](https://github.com/prowler-cloud/prowler/pull/9143)
### 🔄 Changed

View File

@@ -5,6 +5,7 @@ import {
Group,
LayoutGrid,
Mail,
MessageCircleQuestion,
Puzzle,
Settings,
ShieldCheck,
@@ -25,7 +26,6 @@ import {
APIdocIcon,
AWSIcon,
AzureIcon,
CircleHelpIcon,
DocIcon,
GCPIcon,
GithubIcon,
@@ -250,11 +250,17 @@ export const getMenuList = ({
label: "API reference",
icon: APIdocIcon,
},
{
href: "https://customer.support.prowler.com/servicedesk/customer/portal/9/create/102",
target: "_blank",
label: "Customer Support",
icon: MessageCircleQuestion,
},
{
href: "https://github.com/prowler-cloud/prowler/issues",
target: "_blank",
label: "Support",
icon: CircleHelpIcon,
label: "Community Support",
icon: GithubIcon,
},
],
defaultOpen: false,