gitlab-org--gitlab-foss/app/assets/javascripts/boards/models/label.js.es6

12 lines
293 B
JavaScript
Raw Normal View History

/* eslint-disable */
2016-08-10 13:29:55 -04:00
class ListLabel {
2016-08-01 09:18:30 -04:00
constructor (obj) {
this.id = obj.id;
2016-08-01 09:18:30 -04:00
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;
2016-08-01 09:18:30 -04:00
}
}