feat: Remove serializer caching from ALL viewsets

ref: #671 closes #668
This commit is contained in:
2025-03-07 17:53:14 +09:30
parent 7b6fe804a9
commit b63f6b7092
68 changed files with 0 additions and 337 deletions

View File

@ -73,11 +73,6 @@ class ViewSet( ModelViewSet ):
def get_serializer_class(self):
if self.serializer_class is not None:
return self.serializer_class
if (
self.action == 'list'
or self.action == 'retrieve'