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

milestone.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: 17d15278a74c7afdc8ec906433007609056c3462 (plain)
1
2
3
4
5
6
7
8
class ListMilestone {
  constructor(obj) {
    this.id = obj.id;
    this.title = obj.title;
  }
}

window.ListMilestone = ListMilestone;