summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/models/label.js.es6
blob: e81e91fe972f0d9f528cbfe7ea92d40f293d1564 (plain)
1
2
3
4
5
6
7
8
9
class ListLabel {
  constructor (obj) {
    this.id = obj.id;
    this.title = obj.title;
    this.color = obj.color;
    this.description = obj.description;
    this.priority = (obj.priority !== null) ? obj.priority : Infinity;
  }
}