(self, value: UserPermissionGroup)
| 195 | return UserPermissionGroup.objects.all() |
| 196 | |
| 197 | def to_representation(self, value: UserPermissionGroup) -> dict[str, Any]: |
| 198 | return UserPermissionGroupSummarySerializer(value).data |
| 199 | |
| 200 | |
| 201 | class CreateFeatureSerializer(DeleteBeforeUpdateWritableNestedModelSerializer): |
nothing calls this directly
no test coverage detected