From 5c63df522a6df73e58142a1b9db62155c6ec5cd4 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Mon, 11 Apr 2022 22:29:06 -0700 Subject: [PATCH] fix: allow_browser_login in import/export API (#19656) --- superset/importexport/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/superset/importexport/api.py b/superset/importexport/api.py index 156b4c21b..c0021a8f8 100644 --- a/superset/importexport/api.py +++ b/superset/importexport/api.py @@ -40,6 +40,7 @@ class ImportExportRestApi(BaseApi): resource_name = "assets" openapi_spec_tag = "Import/export" + allow_browser_login = True @expose("/export/", methods=["GET"]) @protect()