mirror of https://github.com/portainer/portainer
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
|
function UserAccessViewModel(data) {
|
||
|
this.Id = data.Id;
|
||
|
this.Name = data.Username;
|
||
|
this.Type = 'user';
|
||
|
}
|
||
|
|
||
|
function TeamAccessViewModel(data) {
|
||
|
this.Id = data.Id;
|
||
|
this.Name = data.Name;
|
||
|
this.Type = 'team';
|
||
|
}
|