- Remove welcome message from tenant make customisation

- Add possibility to add allowed_languages to tenant make
This commit is contained in:
Josako
2025-06-26 15:52:10 +02:00
parent fda267b479
commit 53e32a67bd
5 changed files with 78 additions and 5 deletions

View File

@@ -186,6 +186,7 @@ class TenantMake(db.Model):
active = db.Column(db.Boolean, nullable=False, default=True)
website = db.Column(db.String(255), nullable=True)
logo_url = db.Column(db.String(255), nullable=True)
allowed_languages = db.Column(ARRAY(sa.String(2)), nullable=True)
# Chat customisation options
chat_customisation_options = db.Column(JSONB, nullable=True)