(self, serializer)
| 317 | ) |
| 318 | |
| 319 | def perform_update(self, serializer): # type: ignore[no-untyped-def] |
| 320 | serializer.save(project_id=self.kwargs.get("project_pk")) |
| 321 | |
| 322 | def perform_destroy(self, instance): # type: ignore[no-untyped-def] |
| 323 | feature_states = list( |