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: ee0f4e608c943db2369d3f419a361a65910e03b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable no-unused-vars */

class ListAssignee {
  constructor(user) {
    this.id = user.id;
    this.name = user.name;
    this.username = user.username;
    this.avatarUrl = user.avatar_url;
  }
}

window.ListAssignee = ListAssignee;