star/unstar implemented

This commit is contained in:
Deluan 2016-03-23 17:46:54 -04:00
parent b25cfd96eb
commit c50b0bdc48
6 changed files with 98 additions and 4 deletions

View file

@ -89,6 +89,10 @@ func (c *BaseAPIController) SendError(errorCode int, message ...interface{}) {
c.CustomAbort(200, xml.Header+string(xmlBody))
}
func (c *BaseAPIController) SendEmptyResponse() {
c.SendResponse(c.NewEmpty())
}
func (c *BaseAPIController) SendResponse(response responses.Subsonic) {
f := c.GetString("f")
switch f {