X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/64fb530581ffd21e2522e70e8a2d4c46d666f760..908a6ef409518d86bfd2cdf0d2a82a6c312821c8:/app/models/client_application.rb diff --git a/app/models/client_application.rb b/app/models/client_application.rb index 2186dc5df..d3799abe0 100644 --- a/app/models/client_application.rb +++ b/app/models/client_application.rb @@ -6,16 +6,6 @@ class ClientApplication < ActiveRecord::Base validates_uniqueness_of :key before_validation_on_create :generate_keys - def self.find_token(token_key) - token = OauthToken.find_by_token(token_key, :include => :client_application) - if token && token.authorized? - logger.info "Loaded #{token.token} which was authorized by (user_id=#{token.user_id}) on the #{token.authorized_at}" - token - else - nil - end - end - def self.verify_request(request, options = {}, &block) begin signature = OAuth::Signature.build(request, options, &block)