-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I have a collection Products and it's defined like this (I am not writing here the schema and others for the sake of simplicity):
export const Products = new Mongo.Collection('products');
Products.allow({
insert: () => false,
update: () => false,
remove: () => false
});
Products.deny({
insert: () => true,
update: () => true,
remove: () => true
});
So we forbid any updates using client mongo upates (latency compensation). We do all of them through secured methods.
Nevertheless the outpout from audit in the tool is the following:
We believe this wrong.
All this is reproducible using The Meteor Chef's Base...
many thanks for the tool ! :-)
Metadata
Metadata
Assignees
Labels
No labels
