mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-24 07:30:57 +03:00
Make Jukebox available to Subsonic clients
This commit is contained in:
parent
248bf232ff
commit
2cd4358172
@ -23,6 +23,7 @@ func (api *Router) GetUser(r *http.Request) (*responses.Subsonic, error) {
|
||||
response.User.ScrobblingEnabled = true
|
||||
response.User.DownloadRole = conf.Server.EnableDownloads
|
||||
response.User.ShareRole = conf.Server.EnableSharing
|
||||
response.User.JukeboxRole = conf.Server.Jukebox.Enabled
|
||||
return response, nil
|
||||
}
|
||||
|
||||
@ -39,6 +40,7 @@ func (api *Router) GetUsers(r *http.Request) (*responses.Subsonic, error) {
|
||||
user.ScrobblingEnabled = true
|
||||
user.DownloadRole = conf.Server.EnableDownloads
|
||||
user.ShareRole = conf.Server.EnableSharing
|
||||
user.JukeboxRole = conf.Server.Jukebox.Enabled
|
||||
response := newResponse()
|
||||
response.Users = &responses.Users{User: []responses.User{user}}
|
||||
return response, nil
|
||||
|
Loading…
x
Reference in New Issue
Block a user