Skip to content
Snippets Groups Projects
Commit 7d393229 authored by Moritz Strohm's avatar Moritz Strohm Committed by Jan-Hendrik Willms
Browse files

fixed URL parameter when calling course/(course_id)/members, re #1429

Merge request studip/studip!980
parent 106981be
No related branches found
No related tags found
No related merge requests found
......@@ -165,10 +165,12 @@ class Resources
STUDIP.api.GET(
`course/${course_id}/members`,
{
data: {
//The limit '0' results in a division by zero.
//Hopefully, the limit is set to a value high enough:
limit: 1000000
}
}
).done(function(data) {
for (var attribute in data.collection) {
var user_id = data.collection[attribute].member.id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment