Browse Source
Fix missing login hook wih Apache/SAML login (#15909)
Fix missing login hook wih Apache/SAML login
pull/15913/head
John Molakvoæ
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
1 deletions
-
lib/private/legacy/user.php
|
|
|
@ -181,7 +181,15 @@ class OC_User { |
|
|
|
// completed before we can safely create the users folder.
|
|
|
|
// For example encryption needs to initialize the users keys first
|
|
|
|
// before we can create the user folder with the skeleton files
|
|
|
|
OC_Hook::emit("OC_User", "post_login", array("uid" => $uid, 'password' => '')); |
|
|
|
OC_Hook::emit( |
|
|
|
'OC_User', |
|
|
|
'post_login', |
|
|
|
[ |
|
|
|
'uid' => $uid, |
|
|
|
'password' => '', |
|
|
|
'isTokenLogin' => false, |
|
|
|
] |
|
|
|
); |
|
|
|
//trigger creation of user home and /files folder
|
|
|
|
\OC::$server->getUserFolder($uid); |
|
|
|
} |
|
|
|
|