Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created August 21, 2023 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/4d3865e7d6ad7bb6f7729f315885b376 to your computer and use it in GitHub Desktop.
Save brunomichetti/4d3865e7d6ad7bb6f7729f315885b376 to your computer and use it in GitHub Desktop.
...
from drf_spectacular.utils import extend_schema_view
...
@extend_schema_view(list=list_users_schema)
class UsersViewSet(GenericViewSet, CreateModelMixin, ListModelMixin, RetrieveModelMixin, DestroyModelMixin):
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment