(self, request, *args, **kwargs)
| 169 | |
| 170 | @action(methods=['post'], detail=True) |
| 171 | def remove(self, request, *args, **kwargs): |
| 172 | instance = self.get_object() |
| 173 | instance.remove() |
| 174 | return Response(status=204) |
| 175 | |
| 176 | @action(methods=['post'], detail=False, url_path='remove') |
| 177 | def bulk_remove(self, request, *args, **kwargs): |
no test coverage detected