[trends] Allow disabling one or many or all trends
All checks were successful
build / test (push) Successful in 2m22s

This commit is contained in:
2026-06-25 18:58:23 -04:00
parent 0a411bedf4
commit 41a68291a4
13 changed files with 184 additions and 19 deletions

View File

@ -0,0 +1,27 @@
# Generated by Django 4.2.29 on 2026-06-25 20:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0039_userprofile_live_now_playing"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="disabled_trends",
field=models.JSONField(
blank=True,
default=list,
help_text="List of trend slugs the user has disabled",
),
),
migrations.AddField(
model_name="userprofile",
name="trends_disabled",
field=models.BooleanField(default=False),
),
]