Assert.category = helpers.try(async (req, res, next) => {
    if (!await categories.exists(req.params.cid)) {
        return controllerHelpers.formatApiResponse(404, res, new Error('[[error:no-category]]'));
    }