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: 904b3a68507a3d1e897cc8cb938bfad6001198ea (plain)
1
2
3
4
5
6
7
8
class ListUser {
  constructor (user) {
    this.id = user.id;
    this.name = user.name;
    this.username = user.username;
    this.avatar = user.avatar_url;
  }
}