fix(playlist): new url for viewing playlist

This commit is contained in:
bergquist
2016-01-12 08:16:24 +01:00
parent fb4bb7f53e
commit 07fdf6491c
2 changed files with 2 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ function (angular) {
return backendSrv.get('/api/playlists/' + playlistId)
.then(function(playlist) {
return backendSrv.get('/api/playlists/' + playlistId + '/dashboards')
return backendSrv.get('/api/playlists/' + playlistId + '/playlistdashboards')
.then(function(dashboards) {
playlistSrv.start(dashboards, playlist.timespan);
});