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

mutation_types.js « store « import_projects « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74832a03ac1ad963c42b0841f1f83cf01206b582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const REQUEST_REPOS = 'REQUEST_REPOS';
export const RECEIVE_REPOS_SUCCESS = 'RECEIVE_REPOS_SUCCESS';
export const RECEIVE_REPOS_ERROR = 'RECEIVE_REPOS_ERROR';

export const REQUEST_IMPORT = 'REQUEST_IMPORT';
export const RECEIVE_IMPORT_SUCCESS = 'RECEIVE_IMPORT_SUCCESS';
export const RECEIVE_IMPORT_ERROR = 'RECEIVE_IMPORT_ERROR';

export const CANCEL_IMPORT_SUCCESS = 'CANCEL_IMPORT_SUCCESS';

export const RECEIVE_JOBS_SUCCESS = 'RECEIVE_JOBS_SUCCESS';

export const SET_FILTER = 'SET_FILTER';

export const SET_IMPORT_TARGET = 'SET_IMPORT_TARGET';

export const SET_PAGE = 'SET_PAGE';

export const SET_PAGE_CURSORS = 'SET_PAGE_CURSORS';