[templates] Limit home scrobbles to 20 by default, configurable
All checks were successful
build & deploy / test (push) Successful in 2m18s
build & deploy / build-and-deploy (push) Successful in 36s

This commit is contained in:
2026-05-07 15:48:41 -04:00
parent 666224875b
commit a5510d7294
5 changed files with 53 additions and 4 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.29 on 2026-05-07 19:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0030_userprofile_widget_custom_css"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="home_scrobble_limit",
field=models.IntegerField(default=20),
),
]