(self, instance, validated_data)
| 22 | id = serializers.IntegerField() |
| 23 | |
| 24 | def update(self, instance, validated_data): # type: ignore[no-untyped-def] |
| 25 | pass |
| 26 | |
| 27 | def create(self, validated_data): # type: ignore[no-untyped-def] |
| 28 | organisation = Organisation.objects.get(pk=self.context.get("organisation")) |
no outgoing calls