chore: changed my sequence

This commit is contained in:
NarayanBavisetti 2023-12-07 14:29:43 +05:30
parent bd25013fee
commit 056b12d7d7

View File

@ -41,17 +41,17 @@ def get_email_configuration():
return ( return (
get_configuration_value( get_configuration_value(
[ [
{
"key": "EMAIL_HOST",
"default": os.environ.get("EMAIL_HOST"),
},
{ {
"key": "EMAIL_HOST_USER", "key": "EMAIL_HOST_USER",
"default": os.environ.get("EMAIL_HOST_USER", None), "default": os.environ.get("EMAIL_HOST_USER"),
}, },
{ {
"key": "EMAIL_HOST_PASSWORD", "key": "EMAIL_HOST_PASSWORD",
"default": os.environ.get("EMAIL_HOST_PASSWORD", None), "default": os.environ.get("EMAIL_HOST_PASSWORD"),
},
{
"key": "EMAIL_HOST",
"default": os.environ.get("EMAIL_HOST", None),
}, },
{ {
"key": "EMAIL_PORT", "key": "EMAIL_PORT",