1
0
Fork 0
mirror of https://github.com/navidrome/navidrome.git synced 2025-04-06 22:17:37 +03:00

deletePlaylist

This commit is contained in:
Deluan 2016-03-24 12:17:35 -04:00
parent 52850c6ef0
commit a27803a4d1
4 changed files with 30 additions and 0 deletions

View file

@ -42,6 +42,7 @@ func mapEndpoints() {
beego.NSRouter("/getPlaylists.view", &api.PlaylistsController{}, "*:GetAll"),
beego.NSRouter("/getPlaylist.view", &api.PlaylistsController{}, "*:Get"),
beego.NSRouter("/createPlaylist.view", &api.PlaylistsController{}, "*:Create"),
beego.NSRouter("/deletePlaylist.view", &api.PlaylistsController{}, "*:Delete"),
beego.NSRouter("/getUser.view", &api.UsersController{}, "*:GetUser"),
)