fixed typo in OpenID strategy: s/AZ/AX

This commit is contained in:
James A. Rosen 2010-08-11 08:50:47 -07:00
parent c5bb22df9d
commit 9e8782a800
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ module OmniAuth
def initialize(app, store = nil, options = {})
super(app, options[:name] || :open_id)
@options = options
@options[:required] ||= [AX[:email], AX[:first_name], AZ[:last_name], 'email', 'fullname']
@options[:required] ||= [AX[:email], AX[:first_name], AX[:last_name], 'email', 'fullname']
@options[:optional] ||= [AX[:nickname], AX[:city], AX[:state], AX[:website], AX[:image], 'postcode', 'nickname']
@store = store
end