Browse Source

remove unneeded Relation#all from AuthSource#authenticate

git-svn-id: http://svn.redmine.org/redmine/trunk@12593 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.5.0
Toshi MARUYAMA 10 years ago
parent
commit
99fe35be42
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/models/auth_source.rb

+ 1
- 1
app/models/auth_source.rb View File

@@ -77,7 +77,7 @@ class AuthSource < ActiveRecord::Base

# Try to authenticate a user not yet registered against available sources
def self.authenticate(login, password)
AuthSource.where(:onthefly_register => true).all.each do |source|
AuthSource.where(:onthefly_register => true).each do |source|
begin
logger.debug "Authenticating '#{login}' against '#{source.name}'" if logger && logger.debug?
attrs = source.authenticate(login, password)

Loading…
Cancel
Save