Merge branch 'leipert-backport-ee-changes' into 'master'

Backport EE changes (missing exports)

See merge request gitlab-org/gitlab-ce!21772
This commit is contained in:
Phil Hughes 2018-09-17 13:32:30 +00:00
commit 50cb63533f
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import FilteredSearchTokenKeys from './filtered_search_token_keys';
const tokenKeys = [{
export const tokenKeys = [{
key: 'author',
type: 'string',
param: 'username',
@ -42,14 +42,14 @@ if (gon.current_user_id) {
});
}
const alternativeTokenKeys = [{
export const alternativeTokenKeys = [{
key: 'label',
type: 'string',
param: 'name',
symbol: '~',
}];
const conditions = [{
export const conditions = [{
url: 'assignee_id=0',
tokenKey: 'assignee',
value: 'none',