Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit e3047be

Browse files
author
vikasrohit
committed
AS#121262308049576, Copy changes
-- Done
1 parent b0b68c7 commit e3047be

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

app/settings/email/email.controller.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,17 @@ import angular from 'angular'
1818

1919
function activate() {
2020
vm.newsletters = [
21+
{
22+
id: CONSTANTS.MAILCHIMP_NL_GEN,
23+
name: 'General Newsletter',
24+
desc: "News summary from all tracks and programs",
25+
enabled: false,
26+
dirty: false
27+
},
2128
{
2229
id: CONSTANTS.MAILCHIMP_NL_DEV,
2330
name: 'Developer Newsletter',
24-
desc: 'Software architecture, component assembly, application development and bug hunting',
31+
desc: 'Software architecture, component assembly, application development, and bug hunting',
2532
enabled: false,
2633
dirty: false
2734
},
@@ -42,14 +49,14 @@ import angular from 'angular'
4249
{
4350
id: CONSTANTS.MAILCHIMP_NL_TCO,
4451
name: 'TCO Newsletter',
45-
desc: 'Software architecture, component assembly, application development and bug hunting',
52+
desc: 'Our annual online and onsite tournament to celebrate and reward the community',
4653
enabled: false,
4754
dirty: false
4855
},
4956
{
5057
id: CONSTANTS.MAILCHIMP_NL_IOS,
5158
name: 'iOS Community Newsletter',
52-
desc: 'Software architecture, component assembly, application development and bug hunting',
59+
desc: 'Mobile app design and development for iOS, with Swift emphasis',
5360
enabled: false,
5461
dirty: false
5562
}

app/settings/email/email.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.email-preferences-container
22
.settings-section.newsletters
33
.section-info
4-
h2 Always be up to date
5-
.description Select the email notifications that you'd like to receive. We send them once every week, so you can be up to date with latest news, events and callenges.
4+
h2 Email Preferences
5+
.description Choose the community newsletters that you would like to receive. They are sent about once a week and have the latest news on challenges, events, and special programs.
66

77
.section-fields
88
.processing(ng-show="vm.loading")

app/topcoder.constants.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ angular.module('CONSTANTS', []).constant('CONSTANTS', {
2222
'TCO16_URL' : process.env.TCO16_URL,
2323
'MAILCHIMP_LIST_ID' : process.env.MAILCHIMP_LIST_ID,
2424
'MAILCHIMP_NL_CATEGORY_ID': process.env.MAILCHIMP_NL_CATEGORY_ID,
25+
'MAILCHIMP_NL_GEN' : process.env.MAILCHIMP_NL_GEN,
2526
'MAILCHIMP_NL_TCO' : process.env.MAILCHIMP_NL_TCO,
2627
'MAILCHIMP_NL_IOS' : process.env.MAILCHIMP_NL_IOS,
2728
'MAILCHIMP_NL_DEV' : process.env.MAILCHIMP_NL_DEV,

assets/css/settings/email.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
font-size: 16px;
5858
line-height: 28px;
5959
@include sofia-pro-medium;
60-
text-transform: uppercase;
6160
transition: .1s color;
6261
&.disabled {
6362
color: #b7b7b7;

0 commit comments

Comments
 (0)