loopback-component-access-groups
loopback-component-access-groups copied to clipboard
Access controls for Loopback.
Hi there, is there a way to bypass group access control for specific user(s) so they could access all content? I've considered several ideas such as filtering all requests for...
Hi, can it be done without getCurrentContext? ty
Currently it's left to users to define their GroupAccessModel. It would be better if this model was initialized automatically if it doesn't already exist.
When we have multiple users using system at the same time the `this.getCurrentUser` call will often return the wrong value. It seems that getCurrentContext has several issues listed in the...
``` javascript if (ctx.options.skipAccess) { debug('skipAccess: true - skipping access filters'); return next(); } // Do not filter if the request is being made against a single model instance. if...