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

constants.js « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5327f251fdaa2a5d7dedc42ba64955a41b7c7d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
export const EVENT_ISSUABLE_VUE_APP_CHANGE = 'issuable_vue_app:change';

export const ISSUABLE_TYPE = {
  issues: 'issues',
  mergeRequests: 'merge-requests',
};

export const ISSUABLE_INDEX = {
  ISSUE: 'issue_',
  MERGE_REQUEST: 'merge_request_',
};