Add option to disable external scrobbling per player

This commit is contained in:
Deluan 2021-06-23 17:50:15 -04:00
parent 5001518260
commit abe8015745
6 changed files with 47 additions and 16 deletions

View file

@ -5,16 +5,17 @@ import (
)
type Player struct {
ID string `json:"id" orm:"column(id)"`
Name string `json:"name"`
UserAgent string `json:"userAgent"`
UserName string `json:"userName"`
Client string `json:"client"`
IPAddress string `json:"ipAddress"`
LastSeen time.Time `json:"lastSeen"`
TranscodingId string `json:"transcodingId"`
MaxBitRate int `json:"maxBitRate"`
ReportRealPath bool `json:"reportRealPath"`
ID string `json:"id" orm:"column(id)"`
Name string `json:"name"`
UserAgent string `json:"userAgent"`
UserName string `json:"userName"`
Client string `json:"client"`
IPAddress string `json:"ipAddress"`
LastSeen time.Time `json:"lastSeen"`
TranscodingId string `json:"transcodingId"`
MaxBitRate int `json:"maxBitRate"`
ReportRealPath bool `json:"reportRealPath"`
ScrobbleEnabled bool `json:"scrobbleEnabled"`
}
type Players []Player