Use new rest lib (Update receives all columns that need to be updated)

This commit is contained in:
Deluan 2021-11-01 13:55:47 -04:00
parent b2acec0a09
commit 778f474d26
14 changed files with 46 additions and 26 deletions

View file

@ -108,12 +108,13 @@ func (r *playerRepository) Save(entity interface{}) (string, error) {
return id, err
}
func (r *playerRepository) Update(entity interface{}, cols ...string) error {
func (r *playerRepository) Update(id string, entity interface{}, cols ...string) error {
t := entity.(*model.Player)
t.ID = id
if !r.isPermitted(t) {
return rest.ErrPermissionDenied
}
_, err := r.put(t.ID, t)
_, err := r.put(id, t, cols...)
if err == model.ErrNotFound {
return rest.ErrNotFound
}