]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/client_application.rb
Merge branch 'master' into convert_roundabout_exits
[rails.git] / app / models / client_application.rb
index 90523a2655ebb60dc45d93e6cff85f330e93191d..ef1a0110ec8bbeac3ed28303e13b49ce7e2b365f 100644 (file)
@@ -68,14 +68,14 @@ class ClientApplication < ActiveRecord::Base
   end
 
   def oauth_server
-    @oauth_server ||= OAuth::Server.new("http://" + SERVER_URL)
+    @oauth_server ||= OAuth::Server.new("https://" + SERVER_URL)
   end
 
   def credentials
-    @oauth_client ||= OAuth::Consumer.new(key, secret)
+    @credentials ||= OAuth::Consumer.new(key, secret)
   end
 
-  def create_request_token(params = {})
+  def create_request_token(_params = {})
     params = { :client_application => self, :callback_url => token_callback_url }
     permissions.each do |p|
       params[p] = true