mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-04 15:09:44 +00:00
feat: Add AudioClip to database proper
Also: API endpoints and controller implementations
This commit is contained in:
parent
657cb075ee
commit
cdb0bbb4d2
4 changed files with 983 additions and 0 deletions
|
|
@ -182,6 +182,11 @@ class ApiRouter {
|
|||
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))
|
||||
this.router.get('/me/clips', MeController.getClips.bind(this))
|
||||
this.router.get('/me/item/:id/clips', MeController.getItemClips.bind(this))
|
||||
this.router.post('/me/item/:id/clip', MeController.createClip.bind(this))
|
||||
this.router.patch('/me/clip/:clipId', MeController.updateClip.bind(this))
|
||||
this.router.delete('/me/clip/:clipId', MeController.deleteClip.bind(this))
|
||||
this.router.patch('/me/password', this.auth.authRateLimiter, MeController.updatePassword.bind(this))
|
||||
this.router.get('/me/items-in-progress', MeController.getAllLibraryItemsInProgress.bind(this))
|
||||
this.router.get('/me/series/:id/remove-from-continue-listening', MeController.removeSeriesFromContinueListening.bind(this))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue