summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/label.js.es6
blob: 8f20a1bbec750b16888743023a410df917843487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable no-unused-vars, space-before-function-paren */

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;
  }
}