(self, instance)
| 415 | return super(ProjectAPI, self).patch(request, *args, **kwargs) |
| 416 | |
| 417 | def perform_destroy(self, instance): |
| 418 | # we don't need to relaculate counters if we delete whole project |
| 419 | with temporary_disconnect_all_signals(): |
| 420 | instance.delete() |
| 421 | |
| 422 | @extend_schema(exclude=True) |
| 423 | @api_webhook(WebhookAction.PROJECT_UPDATED) |
nothing calls this directly
no test coverage detected