summaryrefslogtreecommitdiff
path: root/matweb
diff options
context:
space:
mode:
authorJan Friedli2020-07-13 16:01:32 +0200
committerJan Friedli2020-07-13 16:01:32 +0200
commit37469e3e080952fdb21cefdce2346fd727990850 (patch)
tree566c2c22804793935a8273f59fb3de1beb2d36d0 /matweb
parentd6001d0f2575bc4e171a24132124a20f7dbaeae7 (diff)
get schema values dynamically
Diffstat (limited to 'matweb')
-rw-r--r--matweb/rest_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/matweb/rest_api.py b/matweb/rest_api.py
index 4910b44..429b82e 100644
--- a/matweb/rest_api.py
+++ b/matweb/rest_api.py
@@ -15,8 +15,8 @@ from flasgger import swag_from
15from matweb import file_removal_scheduler, utils 15from matweb import file_removal_scheduler, utils
16 16
17 17
18api_bp = Blueprint('api_bp', __name__, url_prefix='/api/') 18api_bp = Blueprint('api_bp', __name__)
19api = Api(api_bp) 19api = Api(api_bp, prefix='/api')
20 20
21 21
22class APIUpload(Resource): 22class APIUpload(Resource):