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

Adding calendar invite removal to offboarding wizard #2638

Merged
merged 1 commit into from
Jul 8, 2024
Merged
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
10 changes: 10 additions & 0 deletions src/views/identity/administration/OffboardingWizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const OffboardingWizard = () => {
HideFromGAL: values.HideFromGAL,
DisableSignIn: values.DisableSignIn,
RemoveGroups: values.RemoveGroups,
removeCalendarInvites: values.removeCalendarInvites,
RemoveLicenses: values.RemoveLicenses,
ResetPass: values.ResetPass,
RevokeSessions: values.RevokeSessions,
Expand Down Expand Up @@ -175,6 +176,7 @@ const OffboardingWizard = () => {
<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>
Expand Down Expand Up @@ -397,6 +399,14 @@ const OffboardingWizard = () => {
icon={props.values.RemoveGroups ? faCheck : faTimes}
/>
</CListGroupItem>
<CListGroupItem className="d-flex justify-content-between align-items-center">
Cancel all calendar invites
<FontAwesomeIcon
color="#f77f00"
size="lg"
icon={props.values.removeCalendarInvites ? faCheck : faTimes}
/>
</CListGroupItem>
<CListGroupItem className="d-flex justify-content-between align-items-center">
Hide from Global Address List
<FontAwesomeIcon
Expand Down
Loading