Skip to content
Snippets Groups Projects
Commit 88e13a26 authored by Moritz Strohm's avatar Moritz Strohm
Browse files

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

Merge request studip/studip!980
parent ba22dda6
No related branches found
No related tags found
Loading
......@@ -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