gitlab-org--gitlab-foss/app/assets/javascripts/boards/models/user.js.es6

13 lines
231 B
JavaScript
Raw Normal View History

/* eslint-disable no-unused-vars */
2016-08-10 13:29:55 -04:00
class ListUser {
constructor(user) {
2016-08-05 03:44:26 -04:00
this.id = user.id;
this.name = user.name;
this.username = user.username;
this.avatar = user.avatar_url;
}
}
window.ListUser = ListUser;