mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
function UserViewModel(data) {
|
|
this.Id = data.Id;
|
|
this.Username = data.Username;
|
|
this.RoleId = data.Role;
|
|
if (data.Role === 1) {
|
|
this.RoleName = "administrator";
|
|
} else {
|
|
this.RoleName = "user";
|
|
}
|
|
this.Checked = false;
|
|
}
|