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