Currently, the project viewset does not have the ordering attribute defined. This attribute is essential for specifying the default ordering of the queryset returned by the viewset, ensuring consistent behavior and clarity in the API response.
Proposed Solution:
Add the ordering attribute to the project viewset with an appropriate default ordering.
Specify the default ordering based on the primary key or another relevant field, ensuring consistency in the ordering of the queryset
Description:
Currently, the project viewset does not have the ordering attribute defined. This attribute is essential for specifying the default ordering of the queryset returned by the viewset, ensuring consistent behavior and clarity in the API response.
Proposed Solution: