Skip to content

Changed MFA Reregister - User Offcanvas #1783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/views/identity/administration/Users.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const Offcanvas = (row, rowIndex, formatExtraData) => {
const viewLink = `/identity/administration/users/view?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}&userEmail=${row.userPrincipalName}`
const editLink = `/identity/administration/users/edit?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}`
const OffboardLink = `/identity/administration/offboarding-wizard?userId=${row.id}&tenantDomain=${tenant.defaultDomainName}`
const entraLink = `https://entra.microsoft.com/${tenant.defaultDomainName}/#view/Microsoft_AAD_UsersAndTenants/UserProfileMenuBlade/~/UserAuthMethods/userId/${row.id}/hidePreviewBanner~/true`

let licenses = []
row.assignedLicenses?.map((licenseAssignment, idx) => {
Expand Down Expand Up @@ -94,10 +95,10 @@ const Offcanvas = (row, rowIndex, formatExtraData) => {
},
{
label: 'Rerequire MFA registration',
link: entraLink,
color: 'info',
modal: true,
modalUrl: `/api/ExecResetMFA?TenantFilter=${tenant.defaultDomainName}&ID=${row.id}`,
modalMessage: 'Are you sure you want to enable MFA for this user?',
target: '_blank',
external: true,
},
{
label: 'Send MFA Push',
Expand Down