Skip to content
Snippets Groups Projects
Commit 43489595 authored by Marcus Eibrink-Lunzenauer's avatar Marcus Eibrink-Lunzenauer Committed by Elmar Ludwig
Browse files

increase pagination limit when loading course-memberships

Fixes #245 and #246.
parent b60b8a16
No related branches found
No related tags found
No related merge requests found
......@@ -813,6 +813,7 @@ export const actions = {
const options = {
include: 'course',
'page[limit]': 10000,
};
return dispatch('course-memberships/loadRelated', { parent, relationship, options }, { root: true }).then(
......@@ -867,6 +868,7 @@ export const actions = {
const options = {
include: 'course',
'page[limit]': 10000,
};
return dispatch('course-memberships/loadRelated', { parent, relationship, options }, { root: true }).then(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment