From 193b1dd38172c8325eff189813d15cf0c0484c6a Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Thu, 4 May 2023 10:27:46 +0200 Subject: [PATCH 1/5] duplicate entry --- src/data/standards.json | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/src/data/standards.json b/src/data/standards.json index 12d8991da6d4..1924f234bf7a 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -307,35 +307,7 @@ "addedComponent": null, "label": "Enable 1 hour Activity based Timeout" }, - { - "name": "standards.sharingCapability.Enabled", - "cat": "SharePoint", - "helpText": "This is the default helptext", - "addedComponent": { - "type": "Select", - "label": "Select Sharing Level", - "name": "standards.sharingCapability.Level", - "values": [ - { - "label": "Users can share only with people in the organization. No external sharing is allowed.", - "value": "disabled" - }, - { - "label": "Users can share with new and existing guests. Guests must sign in or provide a verification code.", - "value": "externalUserSharingOnly" - }, - { - "label": "Users can share with anyone by using links that do not require sign-in.", - "value": "externalUserAndGuestSharing" - }, - { - "label": "Users can share with existing guests (those already in the directory of the organization).", - "value": "existingExternalUserSharingOnly" - } - ] - }, - "label": "Set Sharing Level for OneDrive and Sharepoint" - }, + { "name": "standards.calDefault.Enabled", "cat": "Exchange", From 2fc6689ccd23fbb0ceecb25019c0a18852971652 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Thu, 4 May 2023 10:36:51 +0200 Subject: [PATCH 2/5] added guest standard --- src/data/standards.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/data/standards.json b/src/data/standards.json index 1924f234bf7a..9f08f6215c18 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -57,6 +57,13 @@ "addedComponent": null, "label": "Enable Usernames instead of pseudo anonymised names in reports" }, + { + "name": "standards.DisbaleGuestDirectory", + "cat": "Global", + "helpText": "This is the default helptext", + "addedComponent": null, + "label": "Restrict guest user access to directory objects" + }, { "name": "standards.ModernAuth", "cat": "Global", From 7c618eca42a7bbedddf830bdf167b523aca13849 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Thu, 4 May 2023 10:40:14 +0200 Subject: [PATCH 3/5] typo --- 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 9f08f6215c18..50e671286608 100644 --- a/src/data/standards.json +++ b/src/data/standards.json @@ -58,7 +58,7 @@ "label": "Enable Usernames instead of pseudo anonymised names in reports" }, { - "name": "standards.DisbaleGuestDirectory", + "name": "standards.DisableGuestDirectory", "cat": "Global", "helpText": "This is the default helptext", "addedComponent": null, From d7c6b9f09c7cc9b14da1b6a3d7bc89bfcdb3e827 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Fri, 5 May 2023 13:47:48 +0200 Subject: [PATCH 4/5] upped version --- public/version_latest.txt | 2 +- version_latest.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/version_latest.txt b/public/version_latest.txt index fbcbf7380658..e5b820341fb1 100644 --- a/public/version_latest.txt +++ b/public/version_latest.txt @@ -1 +1 @@ -3.4.0 \ No newline at end of file +3.5.0 \ No newline at end of file diff --git a/version_latest.txt b/version_latest.txt index fbcbf7380658..e5b820341fb1 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -3.4.0 \ No newline at end of file +3.5.0 \ No newline at end of file From 2fa5820eea0446d6394d8cb1cbcd3637b201c0e7 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Fri, 5 May 2023 14:52:14 +0200 Subject: [PATCH 5/5] fix minor dash issue --- src/views/home/Home.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/home/Home.js b/src/views/home/Home.js index c2bbc28aaa0a..a6969fd9ea5b 100644 --- a/src/views/home/Home.js +++ b/src/views/home/Home.js @@ -218,14 +218,16 @@ const Home = () => {

Domain(s)

{(isLoadingOrg || isFetchingOrg) && } {!isFetchingOrg && - organization?.verifiedDomains.map((item) =>
  • {item.name}
  • )} + issuccessOrg && + organization?.verifiedDomains?.map((item) =>
  • {item.name}
  • )}

    Capabilities

    {(isLoadingOrg || isFetchingOrg) && } {!isFetchingOrg && + issuccessOrg && organization?.assignedPlans - .filter((p) => p.capabilityStatus == 'Enabled') + ?.filter((p) => p.capabilityStatus == 'Enabled') .reduce((plan, curr) => { if (!plan.includes(curr.service)) { plan.push(curr.service)