We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 ! :-)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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):
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 ! :-)
The text was updated successfully, but these errors were encountered: