Skip to content

Commit

Permalink
Challenge: Fix the download submission file url in challenge controll…
Browse files Browse the repository at this point in the history
…er. (#1168)
  • Loading branch information
RishabhJain2018 authored and taranjeet committed Aug 14, 2017
1 parent d6ef087 commit 1c082a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/controllers/challengeCtrl.js
Expand Up @@ -961,7 +961,7 @@
vm.downloadChallengeSubmissions = function() {
if(vm.phaseId) {
var parameters = {};
parameters.url = "challenges/"+ vm.challengeId + "/phase/" + vm.phaseId + "/download_all_submissions_file/" + vm.fileSelected + "/";
parameters.url = "challenges/"+ vm.challengeId + "/phase/" + vm.phaseId + "/download_all_submissions/" + vm.fileSelected + "/";
parameters.method = "GET";
parameters.token = userKey;
parameters.callback = {
Expand Down

0 comments on commit 1c082a1

Please sign in to comment.