mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-05-20 10:21:30 +00:00
Merge ac841856df into 47ea6b5092
This commit is contained in:
commit
8e28f36579
15 changed files with 310 additions and 12 deletions
|
|
@ -179,6 +179,8 @@ class ApiRouter {
|
|||
this.router.patch('/me/progress/batch/update', MeController.batchUpdateMediaProgress.bind(this))
|
||||
this.router.patch('/me/progress/:libraryItemId/:episodeId?', MeController.createUpdateMediaProgress.bind(this))
|
||||
this.router.delete('/me/progress/:id', MeController.removeMediaProgress.bind(this))
|
||||
this.router.post('/me/item/:id/favorite', MeController.addFavorite.bind(this))
|
||||
this.router.delete('/me/item/:id/favorite', MeController.removeFavorite.bind(this))
|
||||
this.router.post('/me/item/:id/bookmark', MeController.createBookmark.bind(this))
|
||||
this.router.patch('/me/item/:id/bookmark', MeController.updateBookmark.bind(this))
|
||||
this.router.delete('/me/item/:id/bookmark/:time', MeController.removeBookmark.bind(this))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue