diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-06-05 17:37:58 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-06-06 11:40:09 +0200 |
commit | 523cd0af8879482e0f06a647652f00384057701b (patch) | |
tree | 43e53dae132e4d7dd860fcae56053dcada228192 /settings/src/views | |
parent | 9d6aa333d404b4080194bc794dc3ef1a21e2c4c2 (diff) | |
download | nextcloud-server-523cd0af8879482e0f06a647652f00384057701b.tar.gz nextcloud-server-523cd0af8879482e0f06a647652f00384057701b.zip |
Add search/offset/limit parameters to group fetching
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/src/views')
-rw-r--r-- | settings/src/views/Apps.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/views/Apps.vue b/settings/src/views/Apps.vue index a4955f10c51..79ab86f24d0 100644 --- a/settings/src/views/Apps.vue +++ b/settings/src/views/Apps.vue @@ -70,7 +70,7 @@ export default { beforeMount() { this.$store.dispatch('getCategories'); this.$store.dispatch('getAllApps'); - this.$store.dispatch('getGroups'); + this.$store.dispatch('getGroups', {offset: 0, limit: -1}); this.$store.commit('setUpdateCount', this.$store.getters.getServerData.updateCount) }, mounted() { |