Skip to content
Snippets Groups Projects
Commit ce90b8f1 authored by Ron Lucke's avatar Ron Lucke
Browse files

fixes #260

parent 46581e7e
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ export default {
async getCourseFiles() {
const parent = { type: 'courses', id: `${this.context.id}` };
const relationship = 'file-refs';
const options = { include: 'terms-of-use' };
const options = { include: 'terms-of-use', 'page[limit]': 10000 };
await this.loadRelatedFileRefs({ parent, relationship, options });
this.loadedCourseFiles = this.relatedFileRefs({ parent, relationship });
......@@ -131,7 +131,7 @@ export default {
async getUserFiles() {
const parent = { type: 'users', id: `${this.userId}` };
const relationship = 'file-refs';
const options = { include: 'terms-of-use' };
const options = { include: 'terms-of-use', 'page[limit]': 10000 };
await this.loadRelatedFileRefs({ parent, relationship, options });
this.loadedUserFiles = this.relatedFileRefs({ parent, relationship });
......
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