(self, feature: Feature)
| 589 | |
| 590 | class FeatureOwnerInputSerializer(UserIdsSerializer): |
| 591 | def add_owners(self, feature: Feature): # type: ignore[no-untyped-def] |
| 592 | user_ids = self.validated_data["user_ids"] |
| 593 | feature.owners.add(*user_ids) |
| 594 | |
| 595 | def remove_users(self, feature: Feature): # type: ignore[no-untyped-def] |
| 596 | user_ids = self.validated_data["user_ids"] |