Skip to content

Commit

Permalink
remove trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroldwong committed Feb 9, 2024
1 parent ed396a4 commit 335356c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/course/services/courseService.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class CourseService {
return _self.ApiService.delete("/api/courseView/courses/" + course.id + "/tags/" + tag.id);
},
getSectionsBySectionGroupId: function (sectionGroupId) {
return _self.ApiService.get("/api/courseView/sectionGroups/" + sectionGroupId + "/sections/");
return _self.ApiService.get("/api/courseView/sectionGroups/" + sectionGroupId + "/sections");
},
updateSection: function (section) {
if (!section) { return; }
Expand Down

0 comments on commit 335356c

Please sign in to comment.