removed flask-restplus and replaced with flask-restx

This commit is contained in:
2020-02-24 09:26:47 +01:00
parent 1745f56ac7
commit 6ba38cd42d
14 changed files with 29 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ For example: listing of available auth providers or registration of users.
Login through API does not start a new session, but instead returns JWT.
"""
from flask_jwt_extended import jwt_required
from flask_restplus import fields, Resource
from flask_restx import fields, Resource
from sqlalchemy import exc
from backend import db, app