mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +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
|
@ -11,6 +11,7 @@ type MockShareRepo struct {
|
|||
rest.Persistable
|
||||
|
||||
Entity interface{}
|
||||
ID string
|
||||
Cols []string
|
||||
Error error
|
||||
}
|
||||
|
@ -23,10 +24,11 @@ func (m *MockShareRepo) Save(entity interface{}) (string, error) {
|
|||
return "id", nil
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Update(entity interface{}, cols ...string) error {
|
||||
func (m *MockShareRepo) Update(id string, entity interface{}, cols ...string) error {
|
||||
if m.Error != nil {
|
||||
return m.Error
|
||||
}
|
||||
m.ID = id
|
||||
m.Entity = entity
|
||||
m.Cols = cols
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue