summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/models/label.js
blob: d29c7fe973ac64c7a909629eef99a7bc8b6703b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default class ListLabel {
  constructor(obj) {
    this.id = obj.id;
    this.title = obj.title;
    this.type = obj.type;
    this.color = obj.color;
    this.textColor = obj.text_color;
    this.description = obj.description;
    this.priority = (obj.priority !== null) ? obj.priority : Infinity;
  }
}

window.ListLabel = ListLabel;