Skip to content

Commit

Permalink
Added bulkdelete to Contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialEsco committed Jul 15, 2024
1 parent 8ebd98b commit e119273
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/views/email-exchange/administration/ContactsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,17 @@ const ContactList = () => {
reportName: `${tenant?.defaultDomainName}-Contacts-List`,
path: '/api/ListContacts',
columns,
tableProps: {
selectableRows: true,
actionsList: [
{
label: 'Remove selected Contacts',
color: 'danger',
modal: true,
modalUrl: `/api/RemoveContact?TenantFilter=${tenant.defaultDomainName}&GUID=!id`,
},
],
},
params: { TenantFilter: tenant?.defaultDomainName },
}}
/>
Expand Down

0 comments on commit e119273

Please sign in to comment.