Project

General

Profile

Download (324 Bytes) Statistics
| Branch: | Tag: | Revision:
b7589c32 Jan Pazdziora
class AuthSourceExternal < AuthSource
67b925e9 Dominik Hlavac
include Taxonomix

6ebba152 Michael Moll
def authenticate(login, password)
end
b7589c32 Jan Pazdziora
def auth_method_name
"EXTERNAL"
end
alias_method :to_label, :auth_method_name
7d8b5c2e Timo Goebel
# assumes every user is valid
# as we do not do any authentication ourselves
def valid_user?(name)
name.present?
end
b7589c32 Jan Pazdziora
end