feat: added PUT /api/v1/categories/:cid route

Deprecated admin.categories.update socket call
Showing stack trace in console for errors, when in development mode
This commit is contained in:
Julian Lam
2020-04-02 20:44:04 -04:00
parent dc666fd8a9
commit e942ad8101
6 changed files with 91 additions and 91 deletions

View File

@@ -11,3 +11,12 @@ Categories.create = async (req, res) => {
const categoryObjs = await categories.getCategories([response.cid]);
helpers.formatApiResponse(200, res, categoryObjs[0]);
};
Categories.update = async (req, res) => {
const payload = {};
payload[req.params.cid] = req.body;
await categories.update(payload);
const categoryObjs = await categories.getCategories([req.params.cid]);
helpers.formatApiResponse(200, res, categoryObjs[0]);
};