loopback-auditz icon indicating copy to clipboard operation
loopback-auditz copied to clipboard

Adds comprehensive audit trail functionality to Loopback by keeping track of who created/modified/deleted data and when they did it, and adds a revisions model compatible with Sofa/Revisionable for PH...

Results 6 loopback-auditz issues
Sort by recently updated
recently updated
newest added

Hello there, I have integrated this component in my app. I have encountered this issue when I define a custom remote method. ``` AssertionError [ERR_ASSERTION]: type must be either an...

Hi, There is issue on SoftDelete line 320 `Model.destroyAll = function softDestroyAll(where, cb) {}...` Should be `Model.destroyAll = function softDestroyAll(where, data, cb) {}...` See function parameters in updateAll function http://apidocs.loopback.io/loopback/#persistedmodel-updateall...

The "not-deleted" filter `queryNonDeleted = {[options.deletedAt]: null}` is translated into `{ deleted_at: { '$type': 10 } }`. This query won't find any record. What we'd need is more like `deleted_at:...

I followed the instruction and run `nom install --save loopback-component-remote-ctx loopback-auditz` and got this warning: ├── [email protected] └── UNMET PEER DEPENDENCY [email protected] npm WARN [email protected] requires a peer of loopback-component-remote-ctx@^0.2.2...

In our project we're not using the deletedBy argument which is causing us some trouble when using the soft delete system.