mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-24 17:55:34 +02:00
remove unused usenet_directory var and fix types of the configs
This commit is contained in:
@@ -2,11 +2,11 @@ from pydantic_settings import BaseSettings
|
||||
|
||||
|
||||
class EmailConfig(BaseSettings):
|
||||
smtp_host: str
|
||||
smtp_port: int
|
||||
smtp_user: str
|
||||
smtp_password: str
|
||||
from_email: str
|
||||
smtp_host: str = ""
|
||||
smtp_port: int = 587
|
||||
smtp_user: str = ""
|
||||
smtp_password: str = ""
|
||||
from_email: str = ""
|
||||
use_tls: bool = False
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user