mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-03 09:44:41 +02:00
Add:Manage genres #1163
This commit is contained in:
parent
106ddc9541
commit
4971787482
6 changed files with 260 additions and 6 deletions
|
@ -274,6 +274,9 @@ class ApiRouter {
|
|||
this.router.get('/tags', MiscController.getAllTags.bind(this))
|
||||
this.router.post('/tags/rename', MiscController.renameTag.bind(this))
|
||||
this.router.delete('/tags/:tag', MiscController.deleteTag.bind(this))
|
||||
this.router.get('/genres', MiscController.getAllGenres.bind(this))
|
||||
this.router.post('/genres/rename', MiscController.renameGenre.bind(this))
|
||||
this.router.delete('/genres/:genre', MiscController.deleteGenre.bind(this))
|
||||
this.router.post('/validate-cron', MiscController.validateCronExpression.bind(this))
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue