diff --git a/src/Core/OrganizationFeatures/OrganizationSponsorships/FamiliesForEnterprise/SponsorshipCreation/CreateAdminInitiatedSponsorshipHandler.cs b/src/Core/OrganizationFeatures/OrganizationSponsorships/FamiliesForEnterprise/SponsorshipCreation/CreateAdminInitiatedSponsorshipHandler.cs index f36a3719f1..2ae1132b16 100644 --- a/src/Core/OrganizationFeatures/OrganizationSponsorships/FamiliesForEnterprise/SponsorshipCreation/CreateAdminInitiatedSponsorshipHandler.cs +++ b/src/Core/OrganizationFeatures/OrganizationSponsorships/FamiliesForEnterprise/SponsorshipCreation/CreateAdminInitiatedSponsorshipHandler.cs @@ -28,10 +28,10 @@ public class CreateAdminInitiatedSponsorshipHandler( OrganizationUserType[] allowedUserTypes = [ OrganizationUserType.Admin, - OrganizationUserType.Owner, - OrganizationUserType.Custom + OrganizationUserType.Owner ]; - if (!organization.Permissions.ManageUsers || allowedUserTypes.All(x => x != organization.Type)) + + if (!organization.Permissions.ManageUsers && allowedUserTypes.All(x => x != organization.Type)) { throw new UnauthorizedAccessException("You do not have permissions to send sponsorships on behalf of the organization."); }