]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api_controller.rb
Drop user tokens table
[rails.git] / app / controllers / api_controller.rb
index 75db7f73bc757ff600bb59b0d9608c4ccdadaebd..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