summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/label.js.es6
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;
  }
}