Bill Brower
Bill Brower
`SerializerMethodResourceRelatedField` does not include a meta section in the relationship response like `ResourceRelatedField` does. This doesn't make sense, because `SerializerMethodResourceRelatedField` extends `ResourceRelatedField` and both seem to return every related record...
I'm creating a user in my test setup like so: ```python from django.contrib.auth.models import User from rest_framework.test import APITestCase, APIClient class ModelViewsTestCase(APITestCase): def setUp(self): self.user = User.objects.create_user( email='[email protected]', first_name='Test', last_name='User',...
When I run this on an EC2 instance running Amazon Linux 2 I get the following error message: ``` The full traceback is: WARNING: The below traceback may *not* be...
I am having an issue very similar to https://github.com/mharris717/ember-cli-pagination/issues/206. That said the meta portion my response is a little bit different: ```json "meta": { "pagination": { "page": 1, "pages": 6,...