Welcome to mirror list, hosted at ThFree Co, Russian Federation.

iteration.js « models « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7bdc204f7cb1fd77e0b078738b7670d44c1f2b9 (plain)
1
2
3
4
5
6
7
8
9
export default class ListIteration {
  constructor(obj) {
    this.id = obj.id;
    this.title = obj.title;
    this.state = obj.state;
    this.webUrl = obj.web_url || obj.webUrl;
    this.description = obj.description;
  }
}