Skip to content

Alert Rules/GDAP Relationships #2056

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 3 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion src/views/tenant/administration/AlertRules.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ const AlertRules = () => {
value: 'Add member to role.',
label: 'A user has been added to an admin role',
},
{
value: 'Add User.',
label: 'A user account was created',
},
{
value: 'Disable account.',
label: 'A user account has been disabled',
Expand Down Expand Up @@ -164,7 +168,7 @@ const AlertRules = () => {
label: 'A user has logged in from a location not in the allowed locations list',
},
{
value: 'Add service principal',
value: 'Add service principal.',
label: 'A service principal has been created',
},
{
Expand Down
10 changes: 10 additions & 0 deletions src/views/tenant/administration/ListGDAPRelationships.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,16 @@ const Actions = (row, rowIndex, formatExtraData) => {
'/tenant/administration/tenant-onboarding-wizard?tableFilter=Complex: id eq ' +
row.id,
},
{
label: 'Open Relationship in Partner Center',
color: 'info',
link:
'https://partner.microsoft.com/en-us/dashboard/commerce2/customers/' +
row?.customer?.tenantId +
'/adminrelationships/' +
row.id,
external: true,
},
{
label: 'Enable automatic extension',
color: 'info',
Expand Down