Skip to content

Commit da8598f

Browse files
Merge pull request #4979 from NativeScript/tachev/update-privacy-message
docs: update privacy policy message based on the latest legal updates
2 parents 648fda6 + c638248 commit da8598f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

lib/constants.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ export class MacOSVersions {
231231
export const MacOSDeprecationStringFormat = "NativeScript does not support macOS %s and some functionality may not work. Please, upgrade to the latest macOS version.";
232232
export const PROGRESS_PRIVACY_POLICY_URL = "https://www.progress.com/legal/privacy-policy";
233233
export class SubscribeForNewsletterMessages {
234-
public static AgreeToReceiveEmailMsg = "I agree".green.bold + " to receive email communications from Progress Software or its Partners (`https://www.progress.com/partners/partner-directory`)," +
235-
"containing information about Progress Software's products. Consent may be withdrawn at any time.";
234+
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.";
236235
public static ReviewPrivacyPolicyMsg = `You can review the Progress Software Privacy Policy at \`${PROGRESS_PRIVACY_POLICY_URL}\``;
237236
public static PromptMsg = "Input your e-mail address to agree".green + " or " + "leave empty to decline".red.bold + ":";
238237
}

lib/services/subscription-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class SubscriptionService implements ISubscriptionService {
5252
private async sendEmail(email: string): Promise<void> {
5353
if (email) {
5454
const postData = queryString.stringify({
55-
'elqFormName': "dev_uins_cli",
55+
'elqFormName': "NativeScript_IncludeinEmail",
5656
'elqSiteID': '1325',
5757
'emailAddress': email,
5858
'elqCookieWrite': '0'

test/services/subscription-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ describe("subscriptionService", () => {
249249
const email = "[email protected]";
250250

251251
const postData = stringify({
252-
'elqFormName': "dev_uins_cli",
252+
'elqFormName': "NativeScript_IncludeinEmail",
253253
'elqSiteID': '1325',
254254
'emailAddress': email,
255255
'elqCookieWrite': '0'

0 commit comments

Comments
 (0)