Hello,
I was wondering if this is possible to put the list of playlist in my home dashboard in the same way that i have my dashboard list ?
Nicolas
Hello,
I was wondering if this is possible to put the list of playlist in my home dashboard in the same way that i have my dashboard list ?
Nicolas
I found a solution :
First create a plugin,
Then use this request to get the playlist list :
static async GetListPlaylist() {
const result = await getBackendSrv().datasourceRequest({
method: "GET",
url: "api/playlists/",
})
return result;
}
With this you can display the list in the panel
Nicolas