meteor-collection-hooks icon indicating copy to clipboard operation
meteor-collection-hooks copied to clipboard

Meteor Collection Hooks

Results 60 meteor-collection-hooks issues
Sort by recently updated
recently updated
newest added

My `after.update` hooks return the old document because of replication lag (meteor writes the update to primary, collection hooks reads the document from secondary before it gets a chance to...

Please could you expand upon the 0.9.0 release note: > Fix unsafe selector in before.find and before.findOne when called without arguments. This is potentially a BREAKING CHANGE for those who...

question

According to the [documentation](https://github.com/Meteor-Community-Packages/meteor-collection-hooks#afterupdateuserid-doc-fieldnames-modifier-options) of an `.after.update` hook: ``` The optional fetchPrevious option, when set to false, will not fetch documents before running the hooks. ``` But really the documents...

bug

From https://github.com/aldeed/meteor-autoform/issues/766#issuecomment-84171424: 1. Validate against form schema (prevalidate) 2. Run before hooks if valid 3. Validate against collection schema 4. Call method if valid This is the order of `Autoform...

question

I am modifying the modifier passed into a before.update hook and noticed that these changes are being passed to the update hook on the server. So the client and the...

good first issue

When you implemented replacing the prototype of `Meteor.users`, were you able to find a solution to get it to work for IE < 10? Or were you stuck (like I...

good first issue

Maybe we should document where hooks are run and under which conditions as it isn't clear for people who hasn't grasped the internals of meteor yet. i.e. When running find/findOne...

enhancement
good first issue

When installing this package on a project that uses aldeed:tabular, I get the following error: ``` Error: Tabular.Table options must specify collection at new Tabular.Table (packages/aldeed:tabular/common.js:20:1) at packages/yogiben:admin/lib/both/startup.coffee:100:27 at Function._.each._.forEach...

When uninstalling either ongoworks:security or meteor-collection-hooks problem is solved and server starts up. Funnily enough with msavin:mongol (unrelated!) installed the conflict goes unnoticed! Only once you deploy to production (mongol...

After adding the collection-hooks package, I am now getting errors anywhere I have a call to find one that is set to only return specific fields and not include the...

bug