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

constants.js « merge_requests « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64b7763f2572922b82cfce45f135a79d2c4f5138 (plain)
1
2
3
4
5
6
7
8
9
10
export const scopes = {
  assignedToMe: 'assigned-to-me',
  createdByMe: 'created-by-me',
};

export const states = {
  opened: 'opened',
  closed: 'closed',
  merged: 'merged',
};