Merge branch 'toggle_off_ff' of _OKE5H2PQKOUfzFFDuD4FA/default/CODE/gitness (#276)

This commit is contained in:
Dan Wilson 2023-08-04 11:41:27 +00:00 committed by Harness
commit 4eeae4eda0

View File

@ -1,8 +1,8 @@
// temp file to hide open source pipelines and secrets - can be extended if needs be
const featureFlags = {
OPEN_SOURCE_PIPELINES: true,
OPEN_SOURCE_SECRETS: true
OPEN_SOURCE_PIPELINES: false,
OPEN_SOURCE_SECRETS: false
}
export const useFeatureFlag = (): Record<keyof typeof featureFlags, boolean> => featureFlags