Skip to content

docs: update privacy policy message based on the latest legal updates #4979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ export class MacOSVersions {
export const MacOSDeprecationStringFormat = "NativeScript does not support macOS %s and some functionality may not work. Please, upgrade to the latest macOS version.";
export const PROGRESS_PRIVACY_POLICY_URL = "https://www.progress.com/legal/privacy-policy";
export class SubscribeForNewsletterMessages {
public static AgreeToReceiveEmailMsg = "I agree".green.bold + " to receive email communications from Progress Software or its Partners (`https://www.progress.com/partners/partner-directory`)," +
"containing information about Progress Software's products. Consent may be withdrawn at any time.";
public static AgreeToReceiveEmailMsg = "I agree".green.bold + " to receive email communications from Progress Software in the form of the NativeScript Newsletter. Consent may be withdrawn at any time.";
public static ReviewPrivacyPolicyMsg = `You can review the Progress Software Privacy Policy at \`${PROGRESS_PRIVACY_POLICY_URL}\``;
public static PromptMsg = "Input your e-mail address to agree".green + " or " + "leave empty to decline".red.bold + ":";
}
Expand Down
2 changes: 1 addition & 1 deletion lib/services/subscription-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class SubscriptionService implements ISubscriptionService {
private async sendEmail(email: string): Promise<void> {
if (email) {
const postData = queryString.stringify({
'elqFormName': "dev_uins_cli",
'elqFormName': "NativeScript_IncludeinEmail",
'elqSiteID': '1325',
'emailAddress': email,
'elqCookieWrite': '0'
Expand Down
2 changes: 1 addition & 1 deletion test/services/subscription-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ describe("subscriptionService", () => {
const email = "[email protected]";

const postData = stringify({
'elqFormName': "dev_uins_cli",
'elqFormName': "NativeScript_IncludeinEmail",
'elqSiteID': '1325',
'emailAddress': email,
'elqCookieWrite': '0'
Expand Down