Remove flag to allow override media annotation

This commit is contained in:
Deluan 2020-01-20 18:19:16 -05:00
parent 2cc983638c
commit c6ed0d5377
5 changed files with 8 additions and 11 deletions

View file

@ -42,7 +42,7 @@ type MediaFiles []MediaFile
type MediaFileRepository interface {
CountAll() (int64, error)
Exists(id string) (bool, error)
Put(m *MediaFile, overrideAnnotation bool) error
Put(m *MediaFile) error
Get(id string) (*MediaFile, error)
FindByAlbum(albumId string) (MediaFiles, error)
FindByPath(path string) (MediaFiles, error)