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

Commit ca083b0

Browse files
committed
Merge pull request #577 from appirio-tech/feature/SUP-2670
Added correct link for MMs
2 parents 5bf8927 + e36cdaf commit ca083b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/filters/challengeLinks.filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
case 'registrants':
1919
return String.supplant('https://community.{domain}/longcontest/?module=ViewStandings&rd={roundId}', data);
2020
case 'detail':
21-
return String.supplant('https://community.{domain}/tc?module=MatchDetails&rd={roundId}', data);
21+
return String.supplant('https://community.{domain}/longcontest/stats/?module=ViewOverview&rd={roundId}', data);
2222
}
2323
} else {
2424
var data = {

app/filters/filters.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe('filters', function() {
9393
track: 'DATA_SCIENCE',
9494
subTrack : 'MARATHON_MATCH'
9595
};
96-
expect(challengeLinksFilter(_ch, 'detail')).to.be.equal('https://community.'+domain+'/tc?module=MatchDetails&rd=3');
96+
expect(challengeLinksFilter(_ch, 'detail')).to.be.equal('https://community.'+domain+'/longcontest/stats/?module=ViewOverview&rd=3');
9797
expect(challengeLinksFilter(_ch, 'forums')).to.be.equal('https://apps.'+domain+'/forums/?module=ThreadList&forumID=2');
9898
expect(challengeLinksFilter(_ch, 'registrants')).to.be.equal('https://community.'+domain+'/longcontest/?module=ViewStandings&rd=3');
9999
});

0 commit comments

Comments
 (0)