mirror of
https://github.com/harness/drone.git
synced 2025-05-18 01:50:01 +08:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
// temp file to hide open source pipelines and secrets - can be extended if needs be
|
|
|
|
const featureFlags = {
|
|
OPEN_SOURCE_PIPELINES: false,
|
|
OPEN_SOURCE_SECRETS: false
|
|
}
|
|
|
|
export const useFeatureFlag = (): Record<keyof typeof featureFlags, boolean> => featureFlags
|