make possible to set custom route name for google_oauth2 strategy

This commit is contained in:
vlad 2011-10-19 16:02:12 +03:00
Родитель cb40c8855c
Коммит 006d3cc01c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -16,7 +16,7 @@ module OmniAuth
:token_url => '/o/oauth2/token'
}
super(app, :google_oauth2, client_id, client_secret, client_options, options, &block)
super(app, (options[:name] || :google_oauth2), client_id, client_secret, client_options, options, &block)
end
def request_phase