Make OAuth work again

This commit is contained in:
Tom Hughes 2011-11-16 21:06:47 +00:00
parent 87d38efbb0
commit 7b89dc6349
13 changed files with 109 additions and 109 deletions

View file

@ -213,7 +213,8 @@ OpenStreetMap::Application.routes.draw do
resources :oauth_clients
end
match '/oauth/revoke' => 'oauth#revoke'
match '/oauth/authorize' => 'oauth#oauthorize', :as => :authorize
match '/oauth/authorize' => 'oauth#authorize', :as => :authorize
match '/oauth/token' => 'oauth#token', :as => :token
match '/oauth/request_token' => 'oauth#request_token', :as => :request_token
match '/oauth/access_token' => 'oauth#access_token', :as => :access_token
match '/oauth/test_request' => 'oauth#test_request', :as => :test_request