(self, serializer: BaseSerializer[WarehouseConnection])
| 96 | ) |
| 97 | |
| 98 | def perform_update(self, serializer: BaseSerializer[WarehouseConnection]) -> None: |
| 99 | connection: WarehouseConnection = serializer.save() |
| 100 | create_warehouse_audit_log( |
| 101 | connection, self._get_user(self.request), action="updated" |
| 102 | ) |
| 103 | |
| 104 | def perform_destroy(self, instance: WarehouseConnection) -> None: |
| 105 | create_warehouse_audit_log( |
nothing calls this directly
no test coverage detected