This example shows you how to override the count default route.
Forest Admin comes packaged with a set of existing routes, which execute Forest Admin's default logic. At installation, they are generated in /routes
.
An admin backend running on forest-express-sequelize
This directory contains the users.js
files where the routes are declared.
To override the count route, simply remove the next()
statement and add your own logic:
/routes/users.js//...​router.get('/users/count', permissionMiddlewareCreator.list(), (request, response, next) => {response.send({ count: 100000000 });});​//...
​