DefaultSendQueueViewSet
Overview
Marker for REST framework views whose model participates in a workflow.
Permission classes own model-scope deferral. This mixin deliberately does not suppress permission failures because the complete permission expression may contain unrelated gates.
get_queryset
Get the list of items for this view. This must be an iterable, and may be a queryset. Defaults to using self.queryset.
This method should always be used rather than accessing self.queryset directly, as self.queryset gets evaluated only once, and those results are cached for all subsequent requests.
You may want to override this if you need to provide different querysets depending on the incoming request.
(Eg. return a list of items that is specific to the user)
Signature
get_queryset(self)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| self | yes |
Source
server/vueda/vdq/viewsets.py:49
basename
description
detail
filterset_class
name
ordering
ordering_fields
permission_classes
permit_list_expands
queryset
search_fields
serializer_class
suffix
Source
server/vueda/vdq/viewsets.py:34