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

constants.js « users_select « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c100c1f4ca5526d3db36f6a7f01b682df81dffd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const AJAX_USERS_SELECT_PARAMS_MAP = {
  project_id: 'projectId',
  group_id: 'groupId',
  skip_ldap: 'skipLdap',
  todo_filter: 'todoFilter',
  todo_state_filter: 'todoStateFilter',
  current_user: 'showCurrentUser',
  author_id: 'authorId',
  skip_users: 'skipUsers',
  states: 'states',
};

export const ACTIVE_AND_BLOCKED_USER_STATES = ['active', 'blocked'];