Skip to content

Commit 2563395

Browse files
committed
v6
1 parent d4a6a22 commit 2563395

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/shared/topcoder/challenges.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class TopcoderChallengesService {
1818
accessToken?: string,
1919
) {
2020
// Format the input parameters
21-
const url = new URL(`${TOPCODER_API_BASE_URL}/challenges`);
21+
const url = new URL(`${TOPCODER_API_BASE_URL}/v6/challenges`);
2222
Object.entries(queryParams).forEach(([key, value]) => {
2323
if (value !== undefined && value !== null) {
2424
if (Array.isArray(value)) {

src/shared/topcoder/skills.service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ export class TopcoderSkillsService {
1818
accessToken?: string,
1919
) {
2020
// Format the input parameters
21-
const url = new URL(`${TOPCODER_API_BASE_URL}/standardized-skills/skills`);
21+
const url = new URL(
22+
`${TOPCODER_API_BASE_URL}/v5/standardized-skills/skills`,
23+
);
2224
Object.entries(queryParams).forEach(([key, value]) => {
2325
if (value !== undefined && value !== null) {
2426
if (Array.isArray(value)) {

0 commit comments

Comments
 (0)