update python dependencies

This commit is contained in:
Sam
2023-07-14 19:23:29 +02:00
parent c3fb4319a2
commit 5be5e75e9b
3 changed files with 261 additions and 272 deletions

View File

@ -70,6 +70,7 @@ class BaseConfig:
]
OAUTH2_TOKEN_EXPIRES_IN = {
'authorization_code': 864000, # 10 days
'refresh_token': 864000, # 10 days
}
OAUTH2_REFRESH_TOKEN_GENERATOR = True
DATA_EXPORT_EXPIRATION = 24 # hours
@ -102,6 +103,7 @@ class TestingConfig(BaseConfig):
SENDER_EMAIL = 'fittrackee@example.com'
OAUTH2_TOKEN_EXPIRES_IN = {
'authorization_code': 60,
'refresh_token': 60,
}