gitlab-org--gitlab-foss/app/assets/javascripts/boards/models/label.js.es6
2016-10-26 10:02:58 +02:00

11 lines
293 B
JavaScript

/* eslint-disable */
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;
}
}