fixes the block_removed_ldap_users
rake task
In e23a26a (and later 1bc9936) the API for Gitlab::LDAP::Adapter was changed. I assume this rake task was an oversight in the refactoring of the changed class. While being on it, I noticed that already blocked users cannot be blocked again.
This commit is contained in:
parent
c58edd7c70
commit
1f902c2464
1 changed files with 2 additions and 2 deletions
|
@ -92,11 +92,11 @@ namespace :gitlab do
|
|||
|
||||
User.ldap.each do |ldap_user|
|
||||
print "#{ldap_user.name} (#{ldap_user.extern_uid}) ..."
|
||||
if Gitlab::LDAP::Access.open { |access| access.allowed?(ldap_user) }
|
||||
if Gitlab::LDAP::Access.allowed?(ldap_user)
|
||||
puts " [OK]".green
|
||||
else
|
||||
if block_flag
|
||||
ldap_user.block!
|
||||
ldap_user.block! unless ldap_user.blocked?
|
||||
puts " [BLOCKED]".red
|
||||
else
|
||||
puts " [NOT IN LDAP]".yellow
|
||||
|
|
Loading…
Reference in a new issue