add docstring for ContentType
This commit is contained in:
parent
5d9e1306d5
commit
5273cd9d9f
|
|
@ -200,7 +200,12 @@ class AwardTypesListView(generics.ListAPIView):
|
|||
|
||||
|
||||
class ContentTypeView(generics.ListAPIView):
|
||||
"""ContentType list view"""
|
||||
"""
|
||||
ContentType list view
|
||||
|
||||
```
|
||||
Implement getting list of ContentType
|
||||
"""
|
||||
queryset = ContentType.objects.all()
|
||||
serializer_class = serializers.ContentTypeBackSerializer
|
||||
permission_classes = get_permission_classes()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user