depreciated api endpoint (#19524)

This commit is contained in:
AAfghahi 2022-04-05 17:32:16 -04:00 committed by GitHub
parent a88fa8910d
commit 3f7b768c5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,8 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import logging
import simplejson as json
from flask import g, redirect, request, Response
from flask_appbuilder import expose
@ -30,6 +32,8 @@ from superset.utils import core as utils
from .base import BaseSupersetView, DeleteMixin, json_success, SupersetModelView
logger = logging.getLogger(__name__)
class SavedQueryView(SupersetModelView, DeleteMixin):
datamodel = SQLAInterface(SavedQuery)
@ -318,4 +322,7 @@ class SqlLab(BaseSupersetView):
@has_access
def my_queries(self) -> FlaskResponse: # pylint: disable=no-self-use
"""Assigns a list of found users to the given role."""
logger.warning(
"This endpoint is deprecated and will be removed in the next major release"
)
return redirect("/savedqueryview/list/?_flt_0_user={}".format(g.user.get_id()))