debian-mirror-gitlab/app/assets/javascripts/vue_shared/models/label.js
2018-03-27 19:54:05 +05:30

13 lines
328 B
JavaScript

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;