|
@@ -1773,6 +1773,18 @@ export default {
|
|
this.updateUserCount(res.data.userCount);
|
|
this.updateUserCount(res.data.userCount);
|
|
this.updateUsers(res.data.users);
|
|
this.updateUsers(res.data.users);
|
|
|
|
|
|
|
|
+ this.socket.dispatch(
|
|
|
|
+ "stations.getStationIncludedPlaylistsById",
|
|
|
|
+ this.station._id,
|
|
|
|
+ res => {
|
|
|
|
+ if (res.status === "success") {
|
|
|
|
+ this.setIncludedPlaylists(
|
|
|
|
+ res.data.playlists
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ );
|
|
|
|
+
|
|
this.socket.dispatch(
|
|
this.socket.dispatch(
|
|
"stations.getStationExcludedPlaylistsById",
|
|
"stations.getStationExcludedPlaylistsById",
|
|
this.station._id,
|
|
this.station._id,
|