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

project.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: a3d5c7af7acee96301b8abb037df7824ed8a47d7 (plain)
1
2
3
4
5
6
export default class IssueProject {
  constructor(obj) {
    this.id = obj.id;
    this.path = obj.path;
  }
}