]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Update oauth support for rails 3 version of oauth plugin
[rails.git] / app / controllers / application_controller.rb
index 5018dcc42b3c00201613608050da92f4c3c7173b..e22f64c76a60cb06f1927111d0472cc4268e1b8c 100644 (file)
@@ -106,7 +106,7 @@ class ApplicationController < ActionController::Base
   # is optional.
   def setup_user_auth
     # try and setup using OAuth
-    if oauthenticate
+    if Authenticator.new(self, [:token]).allow?
       @user = current_token.user
     else
       username, passwd = get_auth_data # parse from headers
@@ -358,4 +358,8 @@ private
     return [user, pass] 
   end 
 
+  # override to stop oauth plugin sending errors
+  def invalid_oauth_response
+  end
+
 end