AAfghahi commented on a change in pull request #13443:
URL: https://github.com/apache/superset/pull/13443#discussion_r597931704
##########
File path: superset-frontend/src/featureFlags.ts
##########
@@ -43,8 +43,40 @@ export enum FeatureFlag {
ENABLE_EXPLORE_DRAG_AND_DROP = 'ENABLE_EXPLORE_DRAG_AND_DROP',
}
+export type ScheduleQueriesProps = {
+ JSONSCHEMA: {
+ [key: string]: string;
+ };
+ UISCHEMA: {
+ [key: string]: string;
+ };
+ VALIDATION: {
+ [key: string]: string;
+ };
+};
export type FeatureFlagMap = {
- [key in FeatureFlag]?: boolean;
+ SCHEDULED_QUERIES?: ScheduleQueriesProps;
+ ALLOW_DASHBOARD_DOMAIN_SHARDING?: boolean;
+ OMNIBAR?: boolean;
+ CLIENT_CACHE?: boolean;
+ DYNAMIC_PLUGINS?: boolean;
+ SQL_VALIDATORS_BY_ENGINE?: boolean;
+ ESTIMATE_QUERY_COST?: boolean;
+ SHARE_QUERIES_VIA_KV_STORE?: boolean;
+ SQLLAB_BACKEND_PERSISTENCE?: boolean;
+ THUMBNAILS?: boolean;
+ LISTVIEWS_DEFAULT_CARD_VIEW?: boolean;
+ ENABLE_REACT_CRUD_VIEWS?: boolean;
+ DISABLE_DATASET_SOURCE_EDIT?: boolean;
+ DISPLAY_MARKDOWN_HTML?: boolean;
+ ESCAPE_MARKDOWN_HTML?: boolean;
+ DASHBOARD_NATIVE_FILTERS?: boolean;
+ DASHBOARD_CROSS_FILTERS?: boolean;
+ DASHBOARD_NATIVE_FILTERS_SET?: boolean;
+ VERSIONED_EXPORT?: boolean;
+ GLOBAL_ASYNC_QUERIES?: boolean;
+ ENABLE_TEMPLATE_PROCESSING?: boolean;
+ ENABLE_EXPLORE_DRAG_AND_DROP?: boolean;
Review comment:
this looks way better, thank you so much!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]