David Burles
David Burles
Hey @harinsa somehow your project is using a _very_ old version of collection-helpers.
Hey @zeroasterisk are you applying helpers to `Meteor.users` or `Users`?
Though from glancing at the source code, it's unlikely that it wouldn't conflict with collection-helpers
@gduquesnay I've never done anything too fancy, did you have a particular case where you need to stub an individual helper?
Hey @imajus interesting thought, wondering what was the reason that you said you had to use them?
Hey @ephemer it's intentional to not extend upon any existing transform function to avoid potentially very difficult to trace bugs. I'd suggest manually adding methods by supplying your own transform...
Well you wouldn't avoid bugs by doing that, but since collection-helpers simply won't work, you can instead do it manually :) One bug example would simply be overwriting a method,...
Yeah I've considered that, though I'm not entirely convinced that's the way to go either. To be honest it seems it's pretty rare to have a conflict like the one...
``` js Books = new Mongo.Collection('books'); Books.helpers({ // ... }); TAPi18n(Books); ```
Hey @mtchllbrrn there's no easy way to do that with this package however, it's simple enough to achieve. Try the following (with this package): ``` js Test = new Mongo.Collection('test');...