Add playlists REST endpoint

This commit is contained in:
Deluan 2020-05-03 20:05:03 -04:00 committed by Deluan Quintão
parent 8e2480a82d
commit 4e613be960
4 changed files with 30 additions and 3 deletions

View file

@ -72,6 +72,8 @@ func (s *SQLStore) Resource(ctx context.Context, m interface{}) model.ResourceRe
return s.Album(ctx).(model.ResourceRepository)
case model.MediaFile:
return s.MediaFile(ctx).(model.ResourceRepository)
case model.Playlist:
return s.Playlist(ctx).(model.ResourceRepository)
}
log.Error("Resource not implemented", "model", reflect.TypeOf(m).Name())
return nil