Add ability to reorder playlist items

This commit is contained in:
Deluan 2020-06-04 19:05:41 -04:00
parent b597a34cb4
commit 331fa1d952
8 changed files with 158 additions and 34 deletions

View file

@ -43,4 +43,5 @@ type PlaylistTrackRepository interface {
Add(mediaFileIds []string) error
Update(mediaFileIds []string) error
Delete(id string) error
Reorder(pos int, newPos int) error
}