Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user.js.es6 « models « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e9de4d4cbb69132af385f6f150f4e0930a931b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable no-unused-vars */

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

window.ListUser = ListUser;