mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-26 21:19:31 +02:00
authenticate: update user info dashboard to show group info for enterprise (#3736)
* authenticate: update user info dashboard to show group info for enterprise * Update ui/src/components/GroupDetails.tsx Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> Co-authored-by: bobby <1544881+desimone@users.noreply.github.com>
This commit is contained in:
parent
45ce6f693a
commit
2b319822a4
8 changed files with 118 additions and 26 deletions
|
@ -84,7 +84,10 @@ const UserInfoPage: FC<UserInfoPageProps> = ({ data }) => {
|
|||
{subpage === "User" && <SessionDetails session={data?.session} />}
|
||||
|
||||
{subpage === "Groups Info" && (
|
||||
<GroupDetails groups={data?.directoryGroups} />
|
||||
<GroupDetails
|
||||
isEnterprise={data?.isEnterprise}
|
||||
groups={data?.directoryGroups}
|
||||
/>
|
||||
)}
|
||||
|
||||
{subpage === "Devices Info" && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue