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

assignee.js « models « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e822d06bfdb82fc7fdb430355a2cb78da1ace59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default class ListAssignee {
  constructor(obj) {
    this.id = obj.id;
    this.name = obj.name;
    this.username = obj.username;
    this.avatar = obj.avatarUrl || obj.avatar_url || obj.avatar || gon.default_avatar_url;
    this.path = obj.path;
    this.state = obj.state;
    this.webUrl = obj.web_url || obj.webUrl;
  }
}

window.ListAssignee = ListAssignee;