debian-mirror-gitlab/app/assets/javascripts/boards/models/user.js.es6
2016-09-13 17:45:13 +05:30

8 lines
166 B
JavaScript

class ListUser {
constructor (user) {
this.id = user.id;
this.name = user.name;
this.username = user.username;
this.avatar = user.avatar_url;
}
}