Skip to content

Commit

Permalink
Merge pull request #2638 from chase-vgo/dev
Browse files Browse the repository at this point in the history
Adding calendar invite removal to offboarding wizard
  • Loading branch information
KelvinTegelaar committed Jul 8, 2024
2 parents 730dcc5 + a49cd4d commit bab7f3e
Showing 1 changed file with 10 additions and 0 deletions.
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

0 comments on commit bab7f3e

Please sign in to comment.