Skip to content
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

Add start managed folder assistant single and bulk actions #2695

Merged
merged 4 commits into from
Jul 18, 2024
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
16 changes: 16 additions & 0 deletions src/views/email-exchange/administration/MailboxesList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@ const MailboxList = () => {
modalMessage:
'Are you sure you want to unhide this mailbox from the global address list? Remember this will not work if the user is AD Synched.',
},
{
label: 'Start Managed Folder Assistant',
color: 'info',
modal: true,
modalUrl: `/api/ExecStartManagedFolderAssistant?TenantFilter=${tenant.defaultDomainName}&ID=${row.UPN}`,
modalMessage:
'Are you sure you want to start the managed folder assistant for the user?',
},
{
label: 'Set Send Quota',
color: 'info',
Expand Down Expand Up @@ -279,6 +287,14 @@ const MailboxList = () => {
modalMessage:
'Are you sure you want to unhide this mailbox from the global address list? Remember this will not work if the user is AD Synched.',
},
{
label: 'Start Managed Folder Assistant',
color: 'info',
modal: true,
modalUrl: `/api/ExecStartManagedFolderAssistant?TenantFilter=${tenant.defaultDomainName}&ID=!UPN`,
modalMessage:
'Are you sure you want to start the managed folder assistant for these users?',
},
{
label: 'Set Send Quota',
color: 'info',
Expand Down
Loading