You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2022/04/12 05:29:20 UTC

[superset] branch master updated: fix: allow_browser_login in import/export API (#19656)

This is an automated email from the ASF dual-hosted git repository.

beto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c63df522a fix: allow_browser_login in import/export API (#19656)
5c63df522a is described below

commit 5c63df522a6df73e58142a1b9db62155c6ec5cd4
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Mon Apr 11 22:29:06 2022 -0700

    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 156b4c21bd..c0021a8f88 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()