Если вы используете drf-yasg
, вы можете использовать декоратор swagger_auto_schema
для настройки operation_id
.
from drf_yasg.utils import swagger_auto_schema
@method_decorator(name='get', decorator=swagger_auto_schema(operation_id='List Widgets', operation_description='List all available widgets'))
class WidgetListView(ListAPIView):
serializer_class = WidgetSerializer
def get_queryset(self):
return Widget.objects.all()