Skip to content

Commit 7c14d47

Browse files
Merge pull request #3285 from kris6673/edit-othermails
Add alternate email/otherMails to user form
2 parents a17a3d8 + 187a56c commit 7c14d47

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/components/CippFormPages/CippAddEditUser.jsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,15 @@ const CippAddEditUser = (props) => {
249249
formControl={formControl}
250250
/>
251251
</Grid>
252+
<Grid item xs={12} md={6}>
253+
<CippFormComponent
254+
type="textField"
255+
fullWidth
256+
label="Alternate Email Address"
257+
name="otherMails"
258+
formControl={formControl}
259+
/>
260+
</Grid>
252261
{userSettingsDefaults?.userAttributes?.map((attribute, idx) => (
253262
<Grid item xs={6} key={idx}>
254263
<CippFormComponent

src/pages/identity/administration/users/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const Page = () => {
6868
},
6969
{
7070
//tested
71-
label: "Rerequire MFA registration",
71+
label: "Re-require MFA registration",
7272
type: "GET",
7373
icon: <PhonelinkSetup />,
7474
url: "/api/ExecResetMFA",
@@ -322,6 +322,7 @@ const Page = () => {
322322
"department", // Department
323323
"onPremisesLastSyncDateTime", // OnPrem Last Sync
324324
"id", // Unique ID
325+
"otherMails", // Alternate Email Addresses
325326
],
326327
actions: actions,
327328
};

0 commit comments

Comments
 (0)