mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-26 12:02:19 +00:00
* feat: flag is updated * feat: feature flag is updated * feat: onrefetch is added on several actions on app * chore: tab is updated * chore: creating dashbaord error is handled * fix: message is fixed * chore: jest test is updated
12 lines
388 B
TypeScript
12 lines
388 B
TypeScript
// keep this consistent with backend constants.go
|
|
export enum FeatureKeys {
|
|
SSO = 'SSO',
|
|
DurationSort = 'DurationSort',
|
|
TimestampSort = 'TimestampSort',
|
|
SMART_TRACE_DETAIL = 'SMART_TRACE_DETAIL',
|
|
CUSTOM_METRICS_FUNCTION = 'CUSTOM_METRICS_FUNCTION',
|
|
QUERY_BUILDER_PANELS = 'QUERY_BUILDER_PANELS',
|
|
QUERY_BUILDER_ALERTS = 'QUERY_BUILDER_ALERTS',
|
|
DISABLE_UPSELL = 'DISABLE_UPSELL',
|
|
}
|