mirror of https://github.com/portainer/portainer
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
|
function AccessControlFormData() {
|
||
|
this.AccessControlEnabled = true;
|
||
|
this.Ownership = 'private';
|
||
|
this.AuthorizedUsers = [];
|
||
|
this.AuthorizedTeams = [];
|
||
|
}
|