File size: 617 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/**
* We'll use the following constants to do the switchover from
* G Suite -> Google Workspace.
* The product name is never translated in the translation strings
* so we won't translate them here either.
*/
export const GSUITE_PRODUCT_FAMILY = 'G Suite';
export const GOOGLE_WORKSPACE_PRODUCT_FAMILY = 'Google Workspace';
/**
* Defines product types to use as slugs in urls.
* @see emailManagementAddGSuiteUsers() in client/my-sites/email/paths.js
*/
export const GOOGLE_WORKSPACE_PRODUCT_TYPE = 'google-workspace';
export const GSUITE_PRODUCT_TYPE = 'gsuite';
export const GOOGLE_PROVIDER_NAME = 'google';
|