]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Allow OAuth 1.0a to be disabled
[rails.git] / app / controllers / application_controller.rb
index 0a7df0994c9fc23f5c452ed2bb62dfc291b88aa6..ddc6d8ab28f011d1fe6543d502ecc43666f395d1 100644 (file)
@@ -69,6 +69,10 @@ class ApplicationController < ActionController::Base
     @oauth_token = current_user.oauth_token(Settings.oauth_application) if current_user && Settings.key?(:oauth_application)
   end
 
+  def require_oauth_10a_support
+    report_error t("application.oauth_10a_disabled", :link => t("application.auth_disabled_link")), :forbidden unless Settings.oauth_10a_support
+  end
+
   ##
   # require the user to have cookies enabled in their browser
   def require_cookies