[scrobbles] Add sharing of scrobbles
Some checks failed
build / test (push) Has been cancelled

This commit is contained in:
2026-06-09 12:33:25 -04:00
parent 568772a0e6
commit 7f3076608f
20 changed files with 891 additions and 3 deletions

View File

@ -0,0 +1,26 @@
# Generated by Django 4.2.29 on 2026-06-09 15:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0035_userprofile_monthly_mopidy_playlist_pattern"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="default_scrobble_visibility",
field=models.CharField(
choices=[
("public", "Public"),
("shared", "Shared"),
("private", "Private"),
],
default="shared",
max_length=10,
),
),
]