chore: alphabetize flags list

pull/18042/head
Bucky Schwarz 2020-05-15 16:48:02 -07:00 committed by Bucky Schwarz
parent 05fb0e3d23
commit 074a319239
1 changed files with 15 additions and 15 deletions

View File

@ -3,29 +3,29 @@ import {FlagMap} from 'src/shared/reducers/flags'
import {CLOUD, CLOUD_BILLING_VISIBLE} from 'src/shared/constants'
export const OSS_FLAGS = {
deleteWithPredicate: false,
downloadCellCSV: false,
telegrafEditor: false,
customCheckQuery: false,
matchingNotificationRules: false,
demodata: false,
fluxParser: false,
cursorAtEOF: false,
customCheckQuery: false,
deleteWithPredicate: false,
demodata: false,
downloadCellCSV: false,
fluxParser: false,
matchingNotificationRules: false,
notebooks: false,
telegrafEditor: false,
}
export const CLOUD_FLAGS = {
deleteWithPredicate: false,
multiUser: true,
cloudBilling: CLOUD_BILLING_VISIBLE, // should be visible in dev and acceptance, but not in cloud
downloadCellCSV: false,
telegrafEditor: false,
customCheckQuery: false,
matchingNotificationRules: false,
demodata: true,
fluxParser: false,
cursorAtEOF: false,
customCheckQuery: false,
deleteWithPredicate: false,
demodata: true,
downloadCellCSV: false,
fluxParser: false,
matchingNotificationRules: false,
multiUser: true,
notebooks: false,
telegrafEditor: false,
}
export const activeFlags = (state: AppState): FlagMap => {