CelestialGuru

Results 13 comments of CelestialGuru

I'm using `serializers.PrimaryKeyRelatedField(queryset=..., required=True, allow_null=False, allow_empty=False)`, yet the serializer with `partial=True` still ignores my _required_ field. The only way around this issue, to force the field to be required even...

Only insofar that I would like features available for both non-polymorphic and polymorphic models. I strive to keep my code DRY and currently I have to define the mixin twice,...

I found _a_ way to do it but don't like it: ```python import os from django_secrets import SECRETS from objproxies import LazyProxy SECRET_KEY = os.environ.get('SECRET_KEY', LaxyProxy(lambda: SECRETS.get('SECRET_KEY'))) ```