Learnlog

Learnlog

1151 bookmarks
Custom sorting
Is Redux still relevant in 2023?
Is Redux still relevant in 2023?
Redux has evolved and there's a ton of out-dated tutorials out there that won't teach you the later features. Keep near the official documentation
·youtube.com·
Is Redux still relevant in 2023?
Django not recognizing field override for Current User in Serializer
Django not recognizing field override for Current User in Serializer
Braking changes!
"IntegrityError at /api/space/ NOT NULL constraint failed: apiapp_space.creator_id
This was a breaking change in v3.8
For read-only fields you need to pass the value when calling save: def perform_create(self, serializer): serializer.save(creator=self.request.user)
·stackoverflow.com·
Django not recognizing field override for Current User in Serializer