mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Register PlayCount/Date in the DB, if DevUseFolderScanner is true
This commit is contained in:
parent
3c66da0b17
commit
938a92eded
8 changed files with 39 additions and 6 deletions
|
@ -36,8 +36,9 @@ type AlbumRepository interface {
|
|||
PurgeInactive(active Albums) error
|
||||
GetAllIds() ([]string, error)
|
||||
GetStarred(...QueryOptions) (Albums, error)
|
||||
SetStar(star bool, ids ...string) error
|
||||
Search(q string, offset int, size int) (Albums, error)
|
||||
Refresh(ids ...string) error
|
||||
PurgeEmpty() error
|
||||
SetStar(star bool, ids ...string) error
|
||||
MarkAsPlayed(id string, playDate time.Time) error
|
||||
}
|
||||
|
|
|
@ -54,4 +54,5 @@ type MediaFileRepository interface {
|
|||
DeleteByPath(path string) error
|
||||
SetStar(star bool, ids ...string) error
|
||||
SetRating(rating int, ids ...string) error
|
||||
MarkAsPlayed(id string, playTime time.Time) error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue