Add getShares and createShare Subsonic endpoints

This commit is contained in:
Deluan 2023-01-22 14:38:55 -05:00
parent 94cc2b2ac5
commit d0dceae094
21 changed files with 257 additions and 56 deletions

View file

@ -46,3 +46,8 @@ func (p *Router) routes() http.Handler {
})
return r
}
func ShareURL(r *http.Request, id string) string {
uri := path.Join(consts.URLPathPublic, id)
return server.AbsoluteURL(r, uri, nil)
}