aboutsummaryrefslogtreecommitdiffstats
path: root/settings/src/components/userList.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-08-08 19:17:55 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-08-13 11:33:48 +0200
commitb9a24bfef8aad3e8ccdb8a72d654e14a03d2bf30 (patch)
tree3520bd6444a50656fd58a1e85fc168da38a7f09d /settings/src/components/userList.vue
parentb0c18b81177ace2432316efc702929949e05698b (diff)
downloadnextcloud-server-b9a24bfef8aad3e8ccdb8a72d654e14a03d2bf30.tar.gz
nextcloud-server-b9a24bfef8aad3e8ccdb8a72d654e14a03d2bf30.zip
Allow external actions to users list
+ Created fix Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/src/components/userList.vue')
-rw-r--r--settings/src/components/userList.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/settings/src/components/userList.vue b/settings/src/components/userList.vue
index 0649575bf88..69f459b3a6c 100644
--- a/settings/src/components/userList.vue
+++ b/settings/src/components/userList.vue
@@ -119,7 +119,8 @@
</form>
<user-row v-for="(user, key) in filteredUsers" :user="user" :key="key" :settings="settings" :showConfig="showConfig"
- :groups="groups" :subAdminsGroups="subAdminsGroups" :quotaOptions="quotaOptions" :languages="languages" />
+ :groups="groups" :subAdminsGroups="subAdminsGroups" :quotaOptions="quotaOptions" :languages="languages"
+ :externalActions="externalActions" />
<infinite-loading @infinite="infiniteHandler" ref="infiniteLoading">
<div slot="spinner"><div class="users-icon-loading icon-loading"></div></div>
<div slot="no-more"><div class="users-list-end"></div></div>
@@ -141,7 +142,7 @@ import Vue from 'vue';
export default {
name: 'userList',
- props: ['users', 'showConfig', 'selectedGroup'],
+ props: ['users', 'showConfig', 'selectedGroup', 'externalActions'],
components: {
userRow,
Multiselect,