I'm trying to setup access control for my rest API. Loopback provides a great starting point for handling access based on user/role/principals.
But what if I want anything more than provided, e.g. multiple owners for a model instance? Would adding entries to the ACL table be enough? Or should I create a new role/resolver, and if so, can/should I reuse the existing ACL model/table or roll my own?
Loopback is awesome, but documentation lacks depth, ending you up reading the source code.