Changed "Added new messages for returning users with playlists" to a call that just returns all playslists.

This commit is contained in:
Thomas Viesmose Birch
2024-05-04 14:43:05 +02:00
parent 8760a3affc
commit 1487f6e1f5
6 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -23,7 +23,7 @@ export type StuenMessages =
| Playlists
| GetPlaylist
| PlaylistSongs
| GetListenersWithPlaylists
| GetAllPlaylists
| ToggleTag
| Shuffle
| RemoveFromAutoPlay
@@ -161,9 +161,9 @@ export class PlaylistSongs extends StuenMessage {
}
}
export class GetListenersWithPlaylists extends StuenMessage {
export class GetAllPlaylists extends StuenMessage {
constructor() {
super('GetListenersWithPlaylists');
super('GetAllPlaylists');
}
}