diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-03-11 09:15:04 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-03-11 09:15:04 +0200 |
commit | e57e1e04e3d4b930e60a87643f09c908b3bfb90b (patch) | |
tree | 620a2281a2638aae7c2a0432d6934dec389b2982 /app/controllers | |
parent | 3e864036e73f537a37e601716f0835fbee4593c7 (diff) | |
download | gitlab-ce-e57e1e04e3d4b930e60a87643f09c908b3bfb90b.tar.gz |
Remove non-exist method from ldap security check
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/application_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index af1a80ff799..9b05bc479ff 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -183,7 +183,6 @@ class ApplicationController < ActionController::Base def ldap_security_check if current_user && current_user.ldap_user? && current_user.requires_ldap_check? if gitlab_ldap_access.allowed?(current_user) - gitlab_ldap_access.update_permissions(current_user) current_user.last_credential_check_at = Time.now current_user.save else |