1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 22:39:41 +02:00
portainer/app/models/api/endpointAccess.js

11 lines
235 B
JavaScript

function EndpointAccessUserViewModel(data) {
this.Id = data.Id;
this.Name = data.Username;
this.Type = 'user';
}
function EndpointAccessTeamViewModel(data) {
this.Id = data.Id;
this.Name = data.Name;
this.Type = 'team';
}