15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
export default class ListMilestone {
|
|
constructor(obj) {
|
|
this.id = obj.id;
|
|
this.title = obj.title;
|
|
|
|
if (IS_EE) {
|
|
this.path = obj.path;
|
|
this.state = obj.state;
|
|
this.webUrl = obj.web_url || obj.webUrl;
|
|
this.description = obj.description;
|
|
}
|
|
}
|
|
}
|
|
|
|
window.ListMilestone = ListMilestone;
|