Skip to content
Snippets Groups Projects
Commit 8b608b94 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 e50158d2
No related branches found
No related tags found
No related merge requests found
......@@ -165,9 +165,11 @@ class Resources
STUDIP.api.GET(
`course/${course_id}/members`,
{
//The limit '0' results in a division by zero.
//Hopefully, the limit is set to a value high enough:
limit: 1000000
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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment