react-code-dataset / wp-calypso /client /lib /domains /can-current-user-add-email.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { ResponseDomain } from 'calypso/lib/domains/types';
/**
* Determines if email can be added to the provided domain.
* Additional checks are not performed for existing email subscriptions
*/
export function canCurrentUserAddEmail( domain: ResponseDomain | undefined ) {
return !! domain?.currentUserCanAddEmail;
}