mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Use new rest
lib (Update receives all columns that need to be updated)
This commit is contained in:
parent
b2acec0a09
commit
778f474d26
14 changed files with 46 additions and 26 deletions
|
@ -376,9 +376,10 @@ func (r albumRepository) Save(entity interface{}) (string, error) {
|
|||
return id, err
|
||||
}
|
||||
|
||||
func (r albumRepository) Update(entity interface{}, cols ...string) error {
|
||||
func (r albumRepository) Update(id string, entity interface{}, cols ...string) error {
|
||||
album := entity.(*model.Album)
|
||||
_, err := r.put(album.ID, album)
|
||||
album.ID = id
|
||||
_, err := r.put(id, album, cols...)
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue