Skip to content
Snippets Groups Projects
Commit 84175421 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Set default JWT token expiration to 12 hours

This allows a client to login only once a day.

We might want to decrease that and look into refresh token.
But this looks overkill for our use case.
parent 738fd371
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ This module implements the app default settings.
"""
import os
from datetime import timedelta
SQLALCHEMY_DATABASE_URI = 'postgresql://ics:icspwd@postgres/inventory_db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
......@@ -20,6 +21,8 @@ MAIL_SERVER = 'mail.esss.lu.se'
ADMIN_EMAILS = ['admin@example.com']
EMAIL_SENDER = 'inventory@esss.se'
JWT_ACCESS_TOKEN_EXPIRES = timedelta(hours=12)
LDAP_HOST = 'esss.lu.se'
LDAP_BASE_DN = 'DC=esss,DC=lu,DC=se'
LDAP_USER_DN = 'OU=ESS Users'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment