You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: src/common/constants.js
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -189,30 +189,37 @@ module.exports = {
189
189
added: {
190
190
title: 'A new team member has joined your project',
191
191
content: data=>`${data.firstName}${data.lastName} has joined project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a>. Welcome ${data.firstName}! Looking forward to working with you.`,
192
+
disabled: true,
192
193
},
193
194
managerJoined: {
194
195
title: 'A Topcoder project manager has joined your project',
195
196
content: data=>`${data.firstName}${data.lastName} has joined your project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a> as a project manager.`,
197
+
disabled: true,
196
198
},
197
199
copilotJoined: {
198
200
title: 'A Topcoder copilot has joined your project',
199
201
content: data=>`${data.firstName}${data.lastName} has joined your project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a> as a copilot.`,
202
+
disabled: true,
200
203
},
201
204
left: {
202
205
title: 'A team member has left your project',
203
206
content: data=>`${data.firstName}${data.lastName} has left project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a>. Thanks for all your work ${data.firstName}.`,
207
+
disabled: true,
204
208
},
205
209
removed: {
206
210
title: 'A team member has left your project',
207
211
content: data=>`${data.firstName}${data.lastName} has left project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a>. Thanks for all your work ${data.firstName}.`,
212
+
disabled: true,
208
213
},
209
214
ownerChanged: {
210
215
title: 'Your project has a new owner',
211
216
content: data=>`${data.firstName}${data.lastName} is now responsible for project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a>. Good luck ${data.firstName}.`,
217
+
disabled: true,
212
218
},
213
219
ownerAdded: {
214
220
title: 'Ownership changed',
215
221
content: data=>`Your project has a new owner. ${data.firstName}${data.lastName} is now responsible for project <a href="${data.projectUrl}" rel="nofollow">${data.projectName}</a>. Good luck ${data.firstName}!`,
constexpectedBody='Your project has a new owner. F_user L_user is now responsible for project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a>. Good luck F_user!';
constexpectedTitle='A new team member has joined your project';
361
-
constexpectedBody='F_user L_user has joined project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a>. Welcome F_user! Looking forward to working with you.';
constexpectedTitle='A Topcoder project manager has joined your project';
373
-
constexpectedBody='F_user L_user has joined your project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a> as a project manager.';
constexpectedTitle='A Topcoder copilot has joined your project';
385
-
constexpectedBody='F_user L_user has joined your project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a> as a copilot.';
constexpectedTitle='A Topcoder copilot has joined your project';
403
-
constexpectedBody='F_user L_user has joined your project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">test</a> as a copilot.';
constexpectedTitle='A team member has left your project';
425
-
constexpectedBody='F_user L_user has left project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a>. Thanks for all your work F_user.';
constexpectedTitle='A team member has left your project';
437
-
constexpectedBody='F_user L_user has left project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a>. Thanks for all your work F_user.';
constexpectedTitle='Your project has a new owner';
451
-
constexpectedBody='F_user L_user is now responsible for project <a href="https://connect.topcoder-dev.com/projects/1/" rel="nofollow">Project name 1</a>. Good luck F_user.';
0 commit comments