fix(): Aplicado configuração de expiração de visualização de arquivo por variavel de ambiente
This commit is contained in:
parent
c8a0cc7e48
commit
cfcf9fb8e1
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ URL_API = getattr(DB_SETTINGS, "url_api", None)
|
|||
# === Configuração do token temporário ===
|
||||
SECRET_KEY = getattr(DB_SETTINGS, "aeskey", None)
|
||||
ALGORITHM = "HS256"
|
||||
EXPIRE = 12
|
||||
EXPIRE = getattr(DB_SETTINGS, "expire", None)
|
||||
|
||||
|
||||
class ShowAtosRepository:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue