aboutsummaryrefslogtreecommitdiff
path: root/src/api/routes
diff options
context:
space:
mode:
authorPitu <[email protected]>2021-06-20 21:20:27 +0900
committerPitu <[email protected]>2021-06-20 21:20:27 +0900
commitd9e0537a1dbb7b648e258ec66ceca22dc5016b51 (patch)
treecf59813694c0f846366a44f0f9c52bd96d2f5ad4 /src/api/routes
parentfix: pulling config from the db during build process (diff)
downloadhost.fuwn.me-d9e0537a1dbb7b648e258ec66ceca22dc5016b51.tar.xz
host.fuwn.me-d9e0537a1dbb7b648e258ec66ceca22dc5016b51.zip
fix: be able to delete tags
Diffstat (limited to 'src/api/routes')
-rw-r--r--src/api/routes/tags/tagDELETE.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/tags/tagDELETE.js b/src/api/routes/tags/tagDELETE.js
index 733fabf..eec6b63 100644
--- a/src/api/routes/tags/tagDELETE.js
+++ b/src/api/routes/tags/tagDELETE.js
@@ -3,7 +3,7 @@ const Util = require('../../utils/Util');
class tagDELETE extends Route {
constructor() {
- super('/tag/:id/:purge*?', 'delete');
+ super('/tag/:id/:purge?', 'delete');
}
async run(req, res, db, user) {