debian-mirror-gitlab/app/assets/javascripts/boards/models/label.js

15 lines
369 B
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* eslint-disable no-unused-vars, space-before-function-paren */
2016-09-13 17:45:13 +05:30
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;
}
}
2017-08-17 22:00:37 +05:30
window.ListLabel = ListLabel;