add users/groups to saml

This commit is contained in:
Nancy Butler 2021-02-09 14:51:56 -07:00
parent 46d7fe9918
commit fc4317f6cf
2 changed files with 7 additions and 1 deletions

View File

@ -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', []);
}
},

View File

@ -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;
}
},
};