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

label.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: 0910fe9a8540800646b377c372bc5dc5cb5e16aa (plain)
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable */
class ListLabel {
  constructor (obj) {
    this.id = obj.id;
    this.title = obj.title;
    this.color = obj.color;
    this.textColor = obj.text_color;
    this.description = obj.description;
    this.priority = (obj.priority !== null) ? obj.priority : Infinity;
  }
}