diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 9380d879fd..8ab5ff5481 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to the **Prowler UI** are documented in this file. ## [v1.9.0] (Prowler v5.9.0) – UNRELEASED ### 🚀 Added + +- Unhid SAML-related components to make them available [(#8203)](https://github.com/prowler-cloud/prowler/pull/8203) + ### 🔄 Changed - Upgrade to Next.js 14.2.30 and lock TypeScript to 5.5.4 for ESLint compatibility [(#8189)](https://github.com/prowler-cloud/prowler/pull/8189) diff --git a/ui/app/(prowler)/profile/page.tsx b/ui/app/(prowler)/profile/page.tsx index bc8b371fe2..74108355f9 100644 --- a/ui/app/(prowler)/profile/page.tsx +++ b/ui/app/(prowler)/profile/page.tsx @@ -1,10 +1,10 @@ import React, { Suspense } from "react"; -// import { getSamlConfig } from "@/actions/integrations/saml"; +import { getSamlConfig } from "@/actions/integrations/saml"; import { getAllTenants } from "@/actions/users/tenants"; import { getUserInfo } from "@/actions/users/users"; import { getUserMemberships } from "@/actions/users/users"; -// import { SamlIntegrationCard } from "@/components/integrations/saml-integration-card"; +import { SamlIntegrationCard } from "@/components/integrations/saml-integration-card"; import { ContentLayout } from "@/components/ui"; import { UserBasicInfoCard } from "@/components/users/profile"; import { MembershipsCard } from "@/components/users/profile/memberships-card"; @@ -24,7 +24,7 @@ export default async function Profile() { } const SSRDataUser = async () => { - // const samlConfig = await getSamlConfig(); + const samlConfig = await getSamlConfig(); const userProfile = await getUserInfo(); if (!userProfile?.data) { return null; @@ -84,10 +84,9 @@ const SSRDataUser = async () => { /> - {/* TODO after v5.8: Add SAML SSO back in */} - {/*