summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/label.js.es6
blob: 583829552cd398347d95bb32b0a2bcf6481d43cf (plain)
1
2
3
4
5
6
7
8
9
10
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;
  }
}