-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
Description
During the preparation of #9060 I noticed a couple of places which might be improved (or at least raise questions in my head):
- Missing
list
inFindingViewSet
andProductViewSet
. Why? - Missing
update
inNotesViewSet
. Why? It is supported in UI. - User should interact with API without using
1
inSystemSettingsViewSet
, access should be direct. - Move
@extend_schema_view( list=extend_schema(...), retrieve=extend_schema(...),)
toPrefetchDojoModelViewSet
- Missing
create
inRiskAcceptanceViewSet
. Why? I know, there is a separated endpoint, but why not create it also directly?