From 5af2bb111369bc11f957982ce79ec0f3a8edba0c Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Tue, 3 Feb 2026 16:14:28 -0500 Subject: [PATCH] Remove hardcoded playlists from appsettings - use web UI instead --- allstarr/appsettings.Development.json | 25 +++++++------------------ allstarr/appsettings.json | 13 +------------ 2 files changed, 8 insertions(+), 30 deletions(-) diff --git a/allstarr/appsettings.Development.json b/allstarr/appsettings.Development.json index f1324b3..511dd3e 100644 --- a/allstarr/appsettings.Development.json +++ b/allstarr/appsettings.Development.json @@ -5,22 +5,11 @@ "Microsoft.AspNetCore": "Warning" } }, - "SpotifyImport": { - "Enabled": false, - "SyncStartHour": 16, - "SyncStartMinute": 15, - "SyncWindowHours": 2, - "Playlists": [ - { - "Name": "Release Radar", - "SpotifyName": "Release Radar", - "Enabled": true - }, - { - "Name": "Discover Weekly", - "SpotifyName": "Discover Weekly", - "Enabled": true - } - ] - } + "SpotifyImport": { + "Enabled": false, + "SyncStartHour": 16, + "SyncStartMinute": 15, + "SyncWindowHours": 2, + "Playlists": [] + } } diff --git a/allstarr/appsettings.json b/allstarr/appsettings.json index 83185e6..ab6e01a 100644 --- a/allstarr/appsettings.json +++ b/allstarr/appsettings.json @@ -48,18 +48,7 @@ "SyncStartHour": 16, "SyncStartMinute": 15, "SyncWindowHours": 2, - "Playlists": [ - { - "Name": "Release Radar", - "SpotifyName": "Release Radar", - "Enabled": true - }, - { - "Name": "Discover Weekly", - "SpotifyName": "Discover Weekly", - "Enabled": true - } - ] + "Playlists": [] }, "SpotifyApi": { "Enabled": false,