(self, request, pk, *args, **kwargs)
| 146 | |
| 147 | @action(methods=['post'], detail=True) |
| 148 | def action3(self, request, pk, *args, **kwargs): |
| 149 | return Response({'post': pk}) |
| 150 | |
| 151 | @action3.mapping.delete |
| 152 | def action3_delete(self, request, pk, *args, **kwargs): |