villebro commented on a change in pull request #9284: Reduce dashboard bootstrap payload URL: https://github.com/apache/incubator-superset/pull/9284#discussion_r391199089
########## File path: superset/connectors/base/models.py ########## @@ -27,6 +27,23 @@ from superset.models.slice import Slice from superset.utils import core as utils +METRIC_FORM_DATA_PARAMS = [ + "metric", + "timeseries_limit_metric", + "size", + "x", + "y", + "metric_2", +] + +COLUMN_FORM_DATA_PARAMS = [ + "columns", + "all_columns", + "all_columns_x", + "groupby", + "order_by_cols", +] Review comment: Two that I believe are missing here: `series` and `entity`. ---------------------------------------------------------------- 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] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
