(self, *args, **kwargs)
| 160 | |
| 161 | @action(detail=True, methods=['post']) |
| 162 | def cancel(self, *args, **kwargs): |
| 163 | return self.set_pending_action(pending_actions.CANCEL, *args, **kwargs) |
| 164 | |
| 165 | @action(detail=True, methods=['post']) |
| 166 | def restart(self, *args, **kwargs): |
no test coverage detected