[favorites] Add ability to favorite and add to Mopidy
Some checks failed
build / test (push) Has been cancelled

This commit is contained in:
2026-06-05 11:24:26 -04:00
parent b0b22b79dc
commit ce4dc40033
13 changed files with 872 additions and 9 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 4.2.30 on 2026-06-05 14:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0033_userprofile_mopidy_api_url"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="favorites_mopidy_playlist",
field=models.CharField(
blank=True,
help_text="Playlist name (e.g. 'Favorites'). Will map to m3u:Favorites.m3u8",
max_length=255,
null=True,
),
),
]