diff --git a/core/server/api/routes.js b/core/server/api/routes.js index c9fc13a38c..2f7506fdb9 100644 --- a/core/server/api/routes.js +++ b/core/server/api/routes.js @@ -62,8 +62,6 @@ module.exports = function apiRoutes() { apiRouter.put('/users/password', mw.authenticatePrivate, api.http(api.users.changePassword)); apiRouter.put('/users/owner', mw.authenticatePrivate, api.http(api.users.transferOwnership)); apiRouter.put('/users/:id', mw.authenticatePrivate, api.http(api.users.edit)); - - apiRouter.post('/users', mw.authenticatePrivate, api.http(api.users.add)); apiRouter.del('/users/:id', mw.authenticatePrivate, api.http(api.users.destroy)); // ## Tags