From 9a7809222cbc0dbcf6006b5c0b579d5fa7454fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Tue, 6 Feb 2024 20:09:18 +0100 Subject: [PATCH 1/2] Helptext change to reflect change --- src/data/standards.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/standards.json b/src/data/standards.json index 762bdc713054..50286fe472d0 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -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", From 2c7e6085bdfa3e853cd0c7a2e1abcf7e310d8baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= Date: Tue, 6 Feb 2024 21:42:38 +0100 Subject: [PATCH 2/2] Add sortable quota selectors for onedrive and email reports --- src/views/email-exchange/reports/MailboxStatisticsList.jsx | 6 ++++++ src/views/teams-share/onedrive/OneDriveList.jsx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/views/email-exchange/reports/MailboxStatisticsList.jsx b/src/views/email-exchange/reports/MailboxStatisticsList.jsx index c362d618ba63..d2368dc69ccf 100644 --- a/src/views/email-exchange/reports/MailboxStatisticsList.jsx +++ b/src/views/email-exchange/reports/MailboxStatisticsList.jsx @@ -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)', diff --git a/src/views/teams-share/onedrive/OneDriveList.jsx b/src/views/teams-share/onedrive/OneDriveList.jsx index b4114ab96c06..4309c729bafb 100644 --- a/src/views/teams-share/onedrive/OneDriveList.jsx +++ b/src/views/teams-share/onedrive/OneDriveList.jsx @@ -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'],