File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class SubmissionsService {
27
27
* @return {Promise } Resolves to the api response.
28
28
*/
29
29
async getSubmissions ( challengeId ) {
30
- const url = `/submissions?challengeId=${ challengeId } ` ;
30
+ const url = `/v5/ submissions?challengeId=${ challengeId } ` ;
31
31
return this . private . broker . get ( url )
32
32
. then ( res => ( res . ok ? res . json ( ) : new Error ( res . statusText ) ) ) ;
33
33
}
@@ -38,7 +38,7 @@ class SubmissionsService {
38
38
* @returns {Promise } Resolves to the api response.
39
39
*/
40
40
async getSubmissionInformation ( submissionId ) {
41
- const url = `/submissions/${ submissionId } ` ;
41
+ const url = `/v5/ submissions/${ submissionId } ` ;
42
42
return this . private . broker . get ( url )
43
43
. then ( res => ( res . ok ? res . json ( ) : new Error ( res . statusText ) ) ) ;
44
44
}
You can’t perform that action at this time.
0 commit comments