feat: rebuild theme on web settings changed

This commit is contained in:
2025-01-23 09:04:50 +01:00
parent 1e3c2f6a51
commit d5a4345600
13 changed files with 167 additions and 10 deletions
@@ -0,0 +1,20 @@
# Generated by Django 5.1.4 on 2025-01-21 11:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("web", "0002_remove_websettings_logo_240_websettings_logo_256"),
]
operations = [
migrations.AddField(
model_name="websettings",
name="theme_colors",
field=models.JSONField(
default=dict, verbose_name="colores del tema", blank=True
),
),
]