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

Commit 33396a1

Browse files
author
Andrew Abbott
committed
October release challenge 3
* #105 (major requirement) * #104 * #103 (major requirement) * #101 * #94 * #92 * #91 * #85 (major requirement)
1 parent 9c88528 commit 33396a1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
HOOK_BASE_URL: process.env.HOOK_BASE_URL || 'http://topcoderx.topcoder-dev.com',
3737
TOPCODER_ENV: process.env.TOPCODER_ENV || 'dev',
3838
LABELS: process.env.LABELS || [{ name: 'tcx_OpenForPickup', color: '428BCA' }, { name: 'tcx_Assigned', color: '004E00' }, { name: 'tcx_ReadyForReview', color: 'D1D100' }, { name: 'tcx_Paid', color: '7F8C8D' }, { name: 'tcx_Feedback', color: 'FF0000' }, { name: 'tcx_FixAccepted', color: '69D100' },
39-
{name:'Not Ready', color: '000000'}],
39+
{name:'tcx_NotReady', color: '000000'}],
4040
ALLOWED_TOPCODER_ROLES: process.env.ALLOWED_TOPCODER_ROLES || ['administrator', 'admin', 'connect manager', 'connect admin', 'copilot', 'connect copilot'],
4141
COPILOT_ROLE: process.env.COPILOT_ROLE || 'copilot',
4242
HELP_LINK: process.env.HELP_LINK || 'https://github.com/topcoder-platform/topcoder-x-ui/wiki',

src/front/src/app/upsertproject/transfer-ownership-dialog.controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ angular.module('topcoderX')
1818
return;
1919
}
2020
ProjectService.transferOwnership($scope.project.id, $scope.owner).then(function () {
21-
Alert.info('Project ownership is transferred Successfully', $scope);
21+
Alert.info('Project ownership is transferred Successfully', $rootScope);
2222
$rootScope.project = project;
2323
$rootScope.project.owner = $scope.owner;
2424
$state.go('app.project');

src/services/CopilotPaymentService.js

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ async function create(topcoderUser, payment) {
187187
payment: dbPayment.toObject(),
188188
copilot: topcoderUser,
189189
},
190+
provider: 'copilotPayment',
190191
};
191192
await kafka.send(JSON.stringify(paymentCreateEvent));
192193
return dbPayment.toJSON();

0 commit comments

Comments
 (0)