I'm working on a project using the Django REST API framework. When I run the project locally I get the following error:
File "/home/asad/PycharmProjects/microshop/venv/lib/python3.8/site-packages/rest_framework/routers.py", line 153, in get_routes
extra_actions = viewset.get_extra_actions()
AttributeError: type object 'CustomerListAPIViewSet' has no attribute 'get_extra_actions'
I searched on Google and StackOverflow, but could not found any solution.
serializers.py
class CustomerSerializer(serializers.ModelSerializer):
class Meta:
model = Customer
fields = ['name', 'phone_number', 'address', ]
views.py
class CustomerListAPIViewSet(generics.ListAPIView):
queryset = Customer.objects.all()
serializer_class = CustomerSerializer
urls.py
from django.urls import path, include
from accounts_app.views import CustomerListAPIViewSet
from rest_framework import routers
router = routers.DefaultRouter()
router.register(r'customer/', CustomerListAPIViewSet)
urlpatterns = router.urls