diff --git a/superset/templates/superset/models/savedquery/show.html b/superset/templates/superset/models/savedquery/show.html deleted file mode 100644 index 10da57212eecf..0000000000000 --- a/superset/templates/superset/models/savedquery/show.html +++ /dev/null @@ -1,33 +0,0 @@ -{# - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. -#} -{% extends "appbuilder/general/model/show.html" %} - -{% block show_form %} - {{ super() }} -
-{% endblock %} - -{% block tail_js %} - {{ super() }} - {{ js_bundle("showSavedQuery") }} -{% endblock %} diff --git a/superset/views/sql_lab.py b/superset/views/sql_lab.py index 606e9a61ef949..a85fb534124da 100644 --- a/superset/views/sql_lab.py +++ b/superset/views/sql_lab.py @@ -21,7 +21,7 @@ from flask_appbuilder.security.decorators import has_access, has_access_api from flask_babel import lazy_gettext as _ -from superset import db, get_feature_flags +from superset import db from superset.constants import RouteMethod from superset.models.sql_lab import Query, SavedQuery, TableSchema, TabState from superset.typing import FlaskResponse @@ -75,32 +75,12 @@ class SavedQueryView( "changed_on": _("Changed on"), } - show_template = "superset/models/savedquery/show.html" - def pre_add(self, item: "SavedQueryView") -> None: item.user = g.user def pre_update(self, item: "SavedQueryView") -> None: self.pre_add(item) - @has_access - @expose("show/