Skip to content
Snippets Groups Projects
Commit f5a7aa29 authored by Björn Schießle's avatar Björn Schießle
Browse files

call post_addToGroup als for class OC_User because sharing and LDAP are using...

call post_addToGroup als for class OC_User because sharing and LDAP are using this class. Minimal approach to fix #16740
parent f52eec76
No related branches found
No related tags found
No related merge requests found
......@@ -150,6 +150,8 @@ class Server extends SimpleContainer implements IServerContainer {
});
$groupManager->listen('\OC\Group', 'postAddUser', function (\OC\Group\Group $group, \OC\User\User $user) {
\OC_Hook::emit('OC_Group', 'post_addToGroup', array('uid' => $user->getUID(), 'gid' => $group->getGID()));
//Minimal fix to keep it backward compatible TODO: clean up all the GroupManager hooks
\OC_Hook::emit('OC_User', 'post_addToGroup', array('uid' => $user->getUID(), 'gid' => $group->getGID()));
});
return $groupManager;
});
......
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