Hello everyone.
Before i started using rest-framework, i used to override the create method of a model when having some custom creation logic for it, but now i started using viewsets for performing CRUD operations, and it has come to my attention that you can also override the create method of the viewset as well as the create method of the used serializer class.
I would like to understand when i should override the create method on a class rather than the other.
Thanks