Tarmo Leppänen
Tarmo Leppänen
Hmm, did you try that also with `sails-disk` and `sails-mysql` adapters?
I mean that in those `id` is used as in `primary key` not `_id`, so I think this is going to broke those...
Hmm. I'm not liking that idea of multiple fixtures for one object... I need to check this out more detailed level and try to figure out how to handle this....
Yeah, the problem lies really on usage of barrels, I think that there is _proper_ way to use that with assoc so that will work on _all_ databases. I'm open...
Yeah, that's true. I wish that I have some time to make this work with all those DB's. The main problem is with those fixtures and loading those with barrels,...
Could you provide some information to README.MD about this?
Sorry I haven't used ionic, so cannot really help you on that issue. I might build another frontside app using ionic at somepoint (or you could build one). But I...
This is basically fixture problem, mongo doesn't use integer ID's like SQL based databases. So tl:dr when database is initialized created users don't have necessary passport relations attached.
See fixtures for [User](https://github.com/tarlepp/angular-sailsjs-boilerplate/blob/master/backend%2Ftest%2Ffixtures%2FUser.json) and [Passport](https://github.com/tarlepp/angular-sailsjs-boilerplate/blob/master/backend%2Ftest%2Ffixtures%2FPassport.json) models, especially that Passport fixture, see that it relies to numeric `id` columns which are not supported by mongo. So quick fix is to...
Yeah, this one needs some serious work. Basically those fixtures should work as the same with _any_ adapter, otherwise those aren't working like those should. But basically this is only...