X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b6b9d543acd0dfc39f69242e82c60d5a25021f79..5e2c567b7f469f0c8814082f0731806c047884d9:/app/models/client_application.rb diff --git a/app/models/client_application.rb b/app/models/client_application.rb index 67b86417a..ef1a0110e 100644 --- a/app/models/client_application.rb +++ b/app/models/client_application.rb @@ -68,11 +68,11 @@ 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 = {})