quivr/backend/modules/contact_support/controller/settings.py

8 lines
251 B
Python
Raw Normal View History

from pydantic_settings import BaseSettings, SettingsConfigDict
class ContactsSettings(BaseSettings):
model_config = SettingsConfigDict(validate_default=False)
resend_contact_sales_from: str = "null"
resend_contact_sales_to: str = "null"