mirror of https://github.com/rancher/dashboard.git
add users/groups to saml
This commit is contained in:
parent
46d7fe9918
commit
fc4317f6cf
|
|
@ -49,6 +49,8 @@ export default {
|
|||
created() {
|
||||
if ( !this.authConfig.accessMode ) {
|
||||
this.$set(this.authConfig, 'accessMode', 'restricted');
|
||||
} if (!this.authConfig.allowedPrincipalIds) {
|
||||
this.$set(this.authConfig, 'allowedPrincipalIds', []);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ export default {
|
|||
},
|
||||
|
||||
data() {
|
||||
return { isEnabling: false };
|
||||
return { isEnabling: false, editConfig: false };
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
@ -177,5 +177,9 @@ export default {
|
|||
|
||||
return this.model;
|
||||
},
|
||||
|
||||
goToEdit() {
|
||||
this.editConfig = true;
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue