mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
feat: Adds the /explore endpoint to the v1 API (#20399)
* feat: Adds the /explore endpoint to the v1 API * Fixes pylint errors * Fixes tests * Changes the tests logic * Removes ABC reference * Improves indentation * Addresses review comments * Rebases code * Improves dataset and slice assertions * Fixes tests * Removes schema and table name assertions * Removes fixed IDs * Fixes datasource ID
This commit is contained in:
committed by
GitHub
parent
44f0b511dd
commit
20163361b9
@@ -136,6 +136,7 @@ class SupersetAppInitializer: # pylint: disable=too-many-public-methods
|
||||
from superset.datasets.metrics.api import DatasetMetricRestApi
|
||||
from superset.embedded.api import EmbeddedDashboardRestApi
|
||||
from superset.embedded.view import EmbeddedView
|
||||
from superset.explore.api import ExploreRestApi
|
||||
from superset.explore.form_data.api import ExploreFormDataRestApi
|
||||
from superset.explore.permalink.api import ExplorePermalinkRestApi
|
||||
from superset.importexport.api import ImportExportRestApi
|
||||
@@ -204,6 +205,7 @@ class SupersetAppInitializer: # pylint: disable=too-many-public-methods
|
||||
appbuilder.add_api(DatasetColumnsRestApi)
|
||||
appbuilder.add_api(DatasetMetricRestApi)
|
||||
appbuilder.add_api(EmbeddedDashboardRestApi)
|
||||
appbuilder.add_api(ExploreRestApi)
|
||||
appbuilder.add_api(ExploreFormDataRestApi)
|
||||
appbuilder.add_api(ExplorePermalinkRestApi)
|
||||
appbuilder.add_api(FilterSetRestApi)
|
||||
|
||||
Reference in New Issue
Block a user