Bugfix JWT expects input of string

This commit is contained in:
Daniel Goldberg 2018-10-11 17:48:29 +03:00
parent 10d21a4fd4
commit 010183811c
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ def init_app(mongo_url):
app.config['MONGO_URI'] = mongo_url
app.config['SECRET_KEY'] = uuid.getnode()
app.config['SECRET_KEY'] = str(uuid.getnode())
app.config['JWT_AUTH_URL_RULE'] = '/api/auth'
app.config['JWT_EXPIRATION_DELTA'] = env.get_auth_expiration_time()