react-code-dataset / wp-calypso /client /lib /gsuite /can-domain-add-gsuite.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* Determines whether G Suite is allowed for the specified domain.
* @param {string} domainName - domain name
* @returns {boolean} - true if G Suite is allowed, false otherwise
*/
export function canDomainAddGSuite( domainName ) {
if ( domainName.endsWith( '.wpcomstaging.com' ) ) {
return false;
}
return true;
}