Skip to content

Commit

Permalink
Add AD synced field in view user
Browse files Browse the repository at this point in the history
  • Loading branch information
kris6673 committed Jan 20, 2024
1 parent 24713c8 commit a33a4af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/views/identity/administration/UserDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ export default function UserDetails({ tenantDomain, userId, className = null })
heading: 'Sign-In Status',
body: user.accountEnabled ? 'Enabled' : 'Blocked',
},
{
heading: 'AD Synced',
body: user.onPremisesSyncEnabled ? 'Yes' : 'No',
},
{
heading: 'First Name',
body: user.givenName,
Expand Down

0 comments on commit a33a4af

Please sign in to comment.