Luca Ban
Luca Ban
Why is this an issue? Why can’t your users have create permissions? What i usually do is: ``` match Userdocs/{userId} { allow create: if request.auth.uid == userId } ``` This...
This is a good idea. I’ll implement this but the implementation will depend on when/where you execute openDBChannel or fetchAndAdd. Please provide more detail on this. Vuex Easy Firestore was...
I'm thinking of this syntax: ```js const userDataModule = { firestorePath: 'users/{userId}', firestoreRefType: 'doc', moduleName: 'userData', statePropName: 'data', sync: { preventInitialDocInsertion: true } } ``` (This would only work for...
Thanks for your comments. This is important to me. I also agree that turning off initialDocInsert off by default is better, but this would be a breaking change. And I...
@wulfmann @coolhand79 Waiting for your feedback on my last post to start implementing this. Vuex Easy Firestore was made with ♥ by Luca Ban.If this library helped you in any...
Guys I have updated the library and added the ability to prevent initial doc insertion. Please read the [new documentation](https://mesqueeb.github.io/vuex-easy-firestore/query-data.html#automatic-initial-doc-insertion) chapter on this. As for my reasoning for not wanting...
@coolhand79 @wulfmann Do you guys have any advice for me, to prevent the bigger problem we have in #172 ? Please read that thread and drop a comment if you...
I will prevent initial doc insert (in 'doc' mode) by default in v2.0. So I added the milestone and will re-open 🙃 --- After about two years of open source,...
You are right. Since version 2 will be a small core and provide additional actions as plugins, we should think hard about what should and shouldn't be core functionality. ;)...
I have not yet been able to find the reproduction steps for this issue. Any luck reliably reproducing it? Much appreciated!!