summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/user.js.es6
blob: 583a973fc4676fe4dc523eed9aaff0cac0ecf175 (plain)
1
2
3
4
5
6
7
8
9
/* eslint-disable */
class ListUser {
  constructor (user) {
    this.id = user.id;
    this.name = user.name;
    this.username = user.username;
    this.avatar = user.avatar_url;
  }
}