Is it possible to add a slash at the end of all routes in ng-admin. For example, http://localhost/api/v1/users/
instead of http://localhost/api/v1/users
If you want to add a trailing /
at the URL, you need to provide an extra /
in your router file where you specify url
for each state.
e.g:
Instead of
url: '/:entity/delete/:id',
you need to write url: '/:entity/delete/:id/',
Notice the trailing /
.
This configuration will handle the URLs in your app.