Commit 6fc972ab by Torkel Ödegaard

feat(playlists): merge sync with RP

parents 66eebd1a 568832c5
......@@ -180,6 +180,7 @@ func CreatePlaylist(c *middleware.Context, cmd m.CreatePlaylistCommand) Response
func UpdatePlaylist(c *middleware.Context, cmd m.UpdatePlaylistCommand) Response {
cmd.OrgId = c.OrgId
if err := bus.Dispatch(&cmd); err != nil {
return ApiError(500, "Failed to save playlist", err)
}
......
......@@ -17,7 +17,9 @@ class PlaylistSrv {
next() {
this.$timeout.cancel(this.cancelPromise);
if (this.index > this.dashboards.length - 1) {
var playedAllDashboards = this.index > this.dashboards.length - 1;
if (playedAllDashboards) {
this.start(this.playlistId);
} else {
var dash = this.dashboards[this.index];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment