mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix empty entry
collection in Shares
This commit is contained in:
parent
c994ed70ea
commit
e34f26588e
4 changed files with 76 additions and 45 deletions
|
@ -20,11 +20,13 @@ type Share struct {
|
|||
CreatedAt time.Time `structs:"created_at" json:"createdAt,omitempty"`
|
||||
UpdatedAt time.Time `structs:"updated_at" json:"updatedAt,omitempty"`
|
||||
Tracks MediaFiles `structs:"-" json:"tracks,omitempty" orm:"-"`
|
||||
Albums Albums `structs:"-" json:"albums,omitempty" orm:"-"`
|
||||
}
|
||||
|
||||
type Shares []Share
|
||||
|
||||
type ShareRepository interface {
|
||||
Exists(id string) (bool, error)
|
||||
Get(id string) (*Share, error)
|
||||
GetAll(options ...QueryOptions) (Shares, error)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue