]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api_controller.rb
Drop user tokens table
[rails.git] / app / controllers / api_controller.rb
index 7e1b06a8dd3bbde8f7cc6c7bbc538e205e65937d..686e8163001abd8c1f5eb8c6f0a849a546274ec7 100644 (file)
@@ -112,8 +112,6 @@ class ApiController < ApplicationController
       # authenticate per-scheme
       self.current_user = if username.nil?
                             nil # no authentication provided - perhaps first connect (client should retry after 401)
-                          elsif username == "token"
-                            User.authenticate(:token => passwd) # preferred - random token for user from db, passed in basic auth
                           else
                             User.authenticate(:username => username, :password => passwd) # basic auth
                           end
@@ -177,7 +175,7 @@ class ApiController < ApplicationController
   ##
   # wrap an api call in a timeout
   def api_call_timeout(&block)
-    Timeout.timeout(Settings.api_timeout, Timeout::Error, &block)
+    Timeout.timeout(Settings.api_timeout, &block)
   rescue ActionView::Template::Error => e
     e = e.cause