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

Reorder offboarding options and add tags to standards #2730

Merged
merged 3 commits into from
Jul 26, 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
7 changes: 4 additions & 3 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@
{
"name": "standards.OauthConsentLowSec",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact"],
"tag": ["mediumimpact", "IntegratedApps"],
"helpText": "Sets the default oauth consent level so users can consent to applications that have low risks.",
"docsDescription": "Allows users to consent to applications with low assigned risk.",
"label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure)",
Expand Down Expand Up @@ -1336,7 +1336,8 @@
"mdo_highconfidencephishaction",
"mdo_phisspamacation",
"mdo_spam_notifications_only_for_admins",
"mdo_antiphishingpolicies"
"mdo_antiphishingpolicies",
"mdo_phishthresholdlevel"
],
"helpText": "This creates a Anti-Phishing policy that automatically enables Mailbox Intelligence and spoofing, optional switches for Mailtips.",
"addedComponent": [
Expand Down Expand Up @@ -2094,7 +2095,7 @@
{
"name": "standards.DisableSharePointLegacyAuth",
"cat": "SharePoint Standards",
"tag": ["mediumimpact", "CIS"],
"tag": ["mediumimpact", "CIS", "spo_legacy_auth"],
"helpText": "Disables the ability to authenticate with SharePoint using legacy authentication methods. Any applications that use legacy authentication will need to be updated to use modern authentication.",
"docsDescription": "Disables the ability for users and applications to access SharePoint via legacy basic authentication. This will likely not have any user impact, but will block systems/applications depending on basic auth or the SharePointOnlineCredentials class.",
"addedComponent": [],
Expand Down
32 changes: 20 additions & 12 deletions src/views/cipp/UserSettings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,28 +156,36 @@ const UserSettings = () => {
<CRow className="mb-3">
<h3 className="underline mb-5">Offboarding Defaults</h3>
<CCol>
<RFFCFormSwitch name="RevokeSessions" label="Revoke all sessions" />
<RFFCFormSwitch name="RemoveMobile" label="Remove all Mobile Devices" />
<RFFCFormSwitch name="RemoveRules" label="Remove all Rules" />
<RFFCFormSwitch name="RemoveLicenses" label="Remove Licenses" />
<RFFCFormSwitch
name="ConvertToShared"
label="Convert to Shared Mailbox"
/>
<RFFCFormSwitch
name="HideFromGAL"
label="Hide from Global Address List"
/>
</CCol>
<CCol>
<RFFCFormSwitch
name="ConvertToShared"
label="Convert to Shared Mailbox"
name="removeCalendarInvites"
label="Cancel all calendar invites"
/>
<RFFCFormSwitch name="DisableSignIn" label="Disable Sign in" />
<RFFCFormSwitch name="ResetPass" label="Reset Password" />
<RFFCFormSwitch name="RemoveGroups" label="Remove from all groups" />

<RFFCFormSwitch
name="removePermissions"
label="Remove users mailbox permissions"
/>
<RFFCFormSwitch name="RemoveRules" label="Remove all Rules" />
<RFFCFormSwitch
name="keepCopy"
label="Keep copy of forwarded mail in source mailbox"
/>
<RFFCFormSwitch name="RemoveMobile" label="Remove all Mobile Devices" />
</CCol>
<CCol>
<RFFCFormSwitch name="RemoveGroups" label="Remove from all groups" />
<RFFCFormSwitch name="RemoveLicenses" label="Remove Licenses" />
<RFFCFormSwitch name="RevokeSessions" label="Revoke all sessions" />
<RFFCFormSwitch name="DisableSignIn" label="Disable Sign in" />
<RFFCFormSwitch name="ResetPass" label="Reset Password" />
<RFFCFormSwitch name="DeleteUser" label="Delete user" />
</CCol>
</CRow>
<CRow className="mb-3">
Expand Down
14 changes: 7 additions & 7 deletions src/views/identity/administration/OffboardingWizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,17 +167,17 @@ const OffboardingWizard = () => {
<div className="mb-2">
<CRow>
<CCol className="mb-3" md={6}>
<RFFCFormSwitch name="RevokeSessions" label="Revoke all sessions" />
<RFFCFormSwitch name="RemoveMobile" label="Remove all Mobile Devices" />
<RFFCFormSwitch name="ConvertToShared" label="Convert to Shared Mailbox" />
<RFFCFormSwitch name="HideFromGAL" label="Hide from Global Address List" />
<RFFCFormSwitch name="removeCalendarInvites" label="Cancel all calendar invites" />
<RFFCFormSwitch name="removePermissions" label="Remove users mailbox permissions" />
<RFFCFormSwitch name="RemoveRules" label="Remove all Rules" />
<RFFCFormSwitch name="RemoveMobile" label="Remove all Mobile Devices" />
<RFFCFormSwitch name="RemoveGroups" label="Remove from all groups" />
<RFFCFormSwitch name="RemoveLicenses" label="Remove Licenses" />
<RFFCFormSwitch name="removePermissions" label="Remove users mailbox permissions" />
<RFFCFormSwitch name="ConvertToShared" label="Convert to Shared Mailbox" />
<RFFCFormSwitch name="RevokeSessions" label="Revoke all sessions" />
<RFFCFormSwitch name="DisableSignIn" label="Disable Sign in" />
<RFFCFormSwitch name="ResetPass" label="Reset Password" />
<RFFCFormSwitch name="RemoveGroups" label="Remove from all groups" />
<RFFCFormSwitch name="removeCalendarInvites" label="Cancel all calendar invites" />
<RFFCFormSwitch name="HideFromGAL" label="Hide from Global Address List" />
<RFFCFormSwitch name="DeleteUser" label="Delete user" />
</CCol>
<CCol className="mb-3" md={6}>
Expand Down
Loading