Ben Konrath
Ben Konrath
@ericktm You should also use the latest point release for Ember (1.13.10) and Ember Data (1.13.14). These versions have a lot of useful bug fixes.
There's not an example project that I am aware of. Can you create small project that demonstrates the issue that you are having? This will be the easiest way to...
Sorry for the late reply. I'm ok with supporting `HyperlinkedModelSerializer` out of the box but I would want to keep the current behavior as well. The documentation would need to...
Sounds like a good plan. It would be much appreciated if you could make a pull request to improve the documentation about this. Thanks.
I'd like to contribute a pagination component to EDA and I think an example using this component would fit into your example well. But I don't have time to make...
It feels more natural to me to support the `EmbeddedRecordsMixin` instead of adding support for side loading. http://emberjs.com/api/data/classes/DS.EmbeddedRecordsMixin.html DRF supports nested serializers (as you demonstrate in your example) so I...
Thanks for the insight. Ok yeah, I agree it's useful to have the side loading. Your proposal seems good to me.
It makes sense to me that we include the current page number as a computed property. I'm a bit out of the loop on this project these days so I'll...
I'm using this custom function for `on_delete` and it works perfectly now (Django 2.2). https://github.com/django-polymorphic/django-polymorphic/issues/229#issuecomment-398434412 ``` def NON_POLYMORPHIC_CASCADE(collector, field, sub_objs, using): return models.CASCADE(collector, field, sub_objs.non_polymorphic(), using) ``` I think this...
Sorry for the delay. I think this fits into localflavor provided there's not another package already providing this functionality.