Skip to content
Snippets Groups Projects
Commit fcd541ef authored by Marcus Eibrink-Lunzenauer's avatar Marcus Eibrink-Lunzenauer
Browse files

increase pagination limit when loading course-memberships

Fixes #245 and #246.
parent 16e06653
No related branches found
No related tags found
No related merge requests found
......@@ -759,6 +759,7 @@ export const actions = {
const options = {
include: 'course',
'page[limit]': 10000,
};
return dispatch('course-memberships/loadRelated', { parent, relationship, options }, { root: true }).then(
......@@ -813,6 +814,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.
Finish editing this message first!
Please register or to comment