|
@@ -38,6 +38,7 @@ export default class AdminSamlSecurityContainer extends Container {
|
|
|
samlEnvVarAttrMapFirstName: '',
|
|
samlEnvVarAttrMapFirstName: '',
|
|
|
samlDbAttrMapLastName: '',
|
|
samlDbAttrMapLastName: '',
|
|
|
samlEnvVarAttrMapLastName: '',
|
|
samlEnvVarAttrMapLastName: '',
|
|
|
|
|
+ isSameUsernameTreatedAsIdenticalUser: false,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
this.init();
|
|
this.init();
|
|
@@ -112,4 +113,11 @@ export default class AdminSamlSecurityContainer extends Container {
|
|
|
this.setState({ samlDbAttrMapLastName: inputValue });
|
|
this.setState({ samlDbAttrMapLastName: inputValue });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * Switch isSameUsernameTreatedAsIdenticalUser
|
|
|
|
|
+ */
|
|
|
|
|
+ switchIsSameUsernameTreatedAsIdenticalUser() {
|
|
|
|
|
+ this.setState({ isSameUsernameTreatedAsIdenticalUser: !this.state.isSameUsernameTreatedAsIdenticalUser });
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|