mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Make song/album/artist endpoints read-only
This commit is contained in:
parent
aaeaa3c590
commit
12818fb590
4 changed files with 4 additions and 52 deletions
|
@ -275,22 +275,5 @@ func (r *artistRepository) NewInstance() interface{} {
|
|||
return &model.Artist{}
|
||||
}
|
||||
|
||||
func (r artistRepository) Delete(id string) error {
|
||||
return r.delete(Eq{"artist.id": id})
|
||||
}
|
||||
|
||||
func (r artistRepository) Save(entity interface{}) (string, error) {
|
||||
artist := entity.(*model.Artist)
|
||||
err := r.Put(artist)
|
||||
return artist.ID, err
|
||||
}
|
||||
|
||||
func (r artistRepository) Update(id string, entity interface{}, cols ...string) error {
|
||||
artist := entity.(*model.Artist)
|
||||
artist.ID = id
|
||||
return r.Put(artist)
|
||||
}
|
||||
|
||||
var _ model.ArtistRepository = (*artistRepository)(nil)
|
||||
var _ model.ResourceRepository = (*artistRepository)(nil)
|
||||
var _ rest.Persistable = (*artistRepository)(nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue