Dustin Farris
Dustin Farris
@g-cassie that's an interesting approach. So it's basically embedded records on read, pk on write?
From the [section on hasMany](http://emberjs.com/api/data/classes/DS.EmbeddedRecordsMixin.html#method_serializeHasMany): > `{ embedded: 'always' }` is shorthand for: `{ serialize: 'records', deserialize: 'records' }` So you are just flipping the switch on serialize—I think that...
@g-cassie: Good point, none of the solutions here address duplicate data in a ListView. To do that would require some hacking at the response/renderer level which is definitely out of...
:+1:
I like it! PR would be welcome!
~my guess is that this will involve heavy use of ports~
@valberg my bad — for some reason i had it in my head that this library was calling phoenix.js directly, but that is not the case. I skimmed the code...
I was getting this too when trying to start the image in a docker-compose.yml file, but my colleagues were not. The only difference we could come up with is that...
I figured this one out. Had to create the tenant in `test/test_helper.exs` (note this has to be done _before_ setting the sandbox to manual). e.g. ```exs # in test/test_helper.exs Triplex.create...
Thanks for the explanation ❤️ — I ended up doing just that.