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

Update helptext and add sortable quota selectors #2107

Merged
merged 2 commits into from
Feb 6, 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
2 changes: 1 addition & 1 deletion src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@
"name": "standards.EnableMailboxAuditing",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Enables Mailbox auditing for all mailboxes and on tenant level. By default Microsoft does not enable mailbox auditing for Resource Mailboxes, Public Folder Mailboxes and DiscoverySearch Mailboxes. Unified Audit Log needs to be enabled for this standard to function.",
"helpText": "Enables Mailbox auditing for all mailboxes and on tenant level. Disables audit bypass on all mailboxes. Unified Audit Log needs to be enabled for this standard to function.",
"addedComponent": [],
"label": "Enable Mailbox auditing",
"impact": "Low Impact",
Expand Down
6 changes: 6 additions & 0 deletions src/views/email-exchange/reports/MailboxStatisticsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ const MailboxStatsList = () => {
sortable: true,
exportSelector: 'QuotaGB',
},
{
selector: (row) => Math.round((row.UsedGB / row.QuotaGB) * 100 * 10) / 10,
name: 'Quota Used(%)',
sortable: true,
exportSelector: 'QuotaUsed',
},
{
selector: (row) => row['ItemCount'],
name: 'Item Count (Total)',
Expand Down
6 changes: 6 additions & 0 deletions src/views/teams-share/onedrive/OneDriveList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ const OneDriveList = () => {
sortable: true,
exportSelector: 'Allocated',
},
{
selector: (row) => Math.round((row.UsedGB / row.Allocated) * 100 * 10) / 10,
name: 'Quota Used(%)',
sortable: true,
exportSelector: 'QuotaUsed',
},
{
name: 'URL',
selector: (row) => row['url'],
Expand Down
Loading