I'd like my REST API endpoints to use all lower case letters for the model.
In the case of the built-in User
model, would I simply make a new model named user
with User
as the base? or is there another method I should use?
There are a few options:
You can customize the model endpoint name in the model definition json, for example
"http": {"path": "/my-users"}
There are a pending PR: https://github.com/strongloop/loopback/pull/433