Skip to content

Commit

Permalink
Remove limit from axios call that retrieves groups
Browse files Browse the repository at this point in the history
Signed-off-by: Mephisto <mephisto@mephis.to>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
  • Loading branch information
lephisto authored and npmbuildbot-nextcloud[bot] committed Dec 9, 2020
1 parent 3c62d2b commit 3b95d40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/workflowengine/js/workflowengine.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/workflowengine/js/workflowengine.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default {
}
this.status.isLoading = true
return axios.get(generateOcsUrl('cloud', 2) + 'groups/details?limit=20&search=' + encodeURI(searchQuery)).then((response) => {
return axios.get(generateOcsUrl('cloud', 2) + 'groups/details?search=' + encodeURI(searchQuery)).then((response) => {
response.data.ocs.data.groups.forEach((group) => {
this.addGroup({
id: group.id,
Expand Down

0 comments on commit 3b95d40

Please sign in to comment.