mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-27 22:03:58 +00:00
Update OTP generation interval, enhance SMS sending functionality, and add age validation for temporary user registration
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m50s
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m50s
This commit is contained in:
@ -205,8 +205,7 @@ AUTH_PASSWORD_VALIDATORS = [
|
||||
|
||||
LANGUAGE_CODE = "en-us"
|
||||
|
||||
TIME_ZONE = "UTC"
|
||||
|
||||
TIME_ZONE = "Asia/Atyrau"
|
||||
USE_I18N = True
|
||||
|
||||
USE_TZ = True
|
||||
@ -293,7 +292,7 @@ STORAGES = {
|
||||
|
||||
LOGGING_CONFIG = None
|
||||
|
||||
LOGLEVEL = os.environ.get("LOGLEVEL", "WARNING").upper()
|
||||
LOGLEVEL = os.environ.get("LOGLEVEL", "INFO").upper()
|
||||
|
||||
logging.config.dictConfig(
|
||||
{
|
||||
@ -321,7 +320,7 @@ logging.config.dictConfig(
|
||||
},
|
||||
"loggers": {
|
||||
"": {
|
||||
"level": "WARNING",
|
||||
"level": LOGLEVEL,
|
||||
"handlers": ["console"],
|
||||
},
|
||||
"app": {
|
||||
|
Reference in New Issue
Block a user