We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 48a6b7d + 4a82736 commit b593395Copy full SHA for b593395
src/api/winnings/winnings.service.ts
@@ -70,6 +70,7 @@ export class WinningsService {
70
data: {
71
user_name: member.firstName || member.handle || member.lastName,
72
amount_won: amount,
73
+ wallet_link: `${ENV_CONFIG.TOPCODER_WALLET_URL}#payout`,
74
},
75
76
);
src/config/config.env.ts
@@ -87,4 +87,7 @@ export class ConfigEnv {
87
@IsString()
88
SENDGRID_TEMPLATE_ID_PAYMENT_SETUP_NOTIFICATION =
89
'd-919e01f1314e44439bc90971b55f7db7';
90
+
91
+ @IsString()
92
+ TOPCODER_WALLET_URL = 'https://wallet.topcoder.com';
93
}
0 commit comments