(self, request, *args, **kwargs)
| 142 | |
| 143 | @action(methods=['post', 'delete'], detail=True) |
| 144 | def action2(self, request, *args, **kwargs): |
| 145 | return Response({'method': 'action2'}) |
| 146 | |
| 147 | @action(methods=['post'], detail=True) |
| 148 | def action3(self, request, pk, *args, **kwargs): |