app/services/landable/authentication_service.rb in landable-1.13.1 vs app/services/landable/authentication_service.rb in landable-1.13.2
- old
+ new
@@ -8,10 +8,10 @@
strategies.each do |strategy|
ident = strategy.call username, password
return ident if ident
end
- raise AuthenticationFailedError
+ fail AuthenticationFailedError
end
class EchoAuthenticator
def self.call(username, password)
new(nil, nil).call(username, password)