Add:Item metadata utils config page for managing tags #1163

This commit is contained in:
advplyr 2022-12-18 14:17:52 -06:00
parent 54b41b15c2
commit 4d93e39fa9
8 changed files with 287 additions and 3 deletions

View file

@ -272,6 +272,8 @@ class ApiRouter {
this.router.patch('/settings', MiscController.updateServerSettings.bind(this))
this.router.post('/authorize', MiscController.authorize.bind(this))
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.post('/validate-cron', MiscController.validateCronExpression.bind(this))
}