Renaming to GetOtherPlaylists
This commit is contained in:
+8
-3
@@ -23,7 +23,7 @@ export type StuenMessages =
|
||||
| Playlists
|
||||
| GetPlaylist
|
||||
| PlaylistSongs
|
||||
| GetAllPlaylists
|
||||
| GetOtherPlaylists
|
||||
| ToggleTag
|
||||
| Shuffle
|
||||
| RemoveFromAutoPlay
|
||||
@@ -161,12 +161,17 @@ export class PlaylistSongs extends StuenMessage {
|
||||
}
|
||||
}
|
||||
|
||||
export class GetAllPlaylists extends StuenMessage {
|
||||
export class GetOtherPlaylists extends StuenMessage {
|
||||
constructor() {
|
||||
super('GetAllPlaylists');
|
||||
super('GetOtherPlaylists');
|
||||
}
|
||||
}
|
||||
|
||||
export class OthersPlaylists extends StuenMessage {
|
||||
constructor(public playlists: PlaylistDescription[]) {
|
||||
super('OthersPlaylists');
|
||||
}
|
||||
}
|
||||
export class AddSongToPlaylist extends StuenMessage {
|
||||
constructor(public song: Song, public playlist: string) {
|
||||
super('AddSongToPlaylist');
|
||||
|
||||
Reference in New Issue
Block a user