Daniel Goldberg 2018-09-12 20:02:48 +03:00
parent 0518899475
commit 6eb48c4445
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import os
import uuid
from datetime import datetime
import bson
@ -83,7 +84,7 @@ def init_app(mongo_url):
app.config['MONGO_URI'] = mongo_url
app.config['SECRET_KEY'] = os.urandom(32)
app.config['SECRET_KEY'] = uuid.getnode()
app.config['JWT_AUTH_URL_RULE'] = '/api/auth'
app.config['JWT_EXPIRATION_DELTA'] = env.get_auth_expiration_time()