diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-24 16:07:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-24 16:07:02 +0200 |
commit | 77b202ce806e0eb5de99f84f030555476b387d73 (patch) | |
tree | 0af14bd8678a1350e7a8dc5f522d076f878a1be5 | |
parent | b156117cbde5e9e31ef3b67fece0fe93fb2f8305 (diff) | |
download | nextcloud-server-77b202ce806e0eb5de99f84f030555476b387d73.tar.gz nextcloud-server-77b202ce806e0eb5de99f84f030555476b387d73.zip |
Allow apps to register plugins for the user management
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | settings/js/users/users.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 16f043b4576..46f4e5977be 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -677,6 +677,7 @@ var UserList = { }; $(document).ready(function () { + OC.Plugins.attach('OC.Settings.UserList', UserList); $userList = $('#userlist'); $userListBody = $userList.find('tbody'); $userListHead = $userList.find('thead'); |