X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/52e5fa6ad78f375cec5a207a123a4aa3939c8ddf..6e0ca57e2f8a492c29d98264e7e74b3661b87308:/app/models/oauth2_token.rb diff --git a/app/models/oauth2_token.rb b/app/models/oauth2_token.rb index 9c28d886e..2c0b1f508 100644 --- a/app/models/oauth2_token.rb +++ b/app/models/oauth2_token.rb @@ -1,17 +1,17 @@ class Oauth2Token < AccessToken attr_accessor :state - def as_json(options={}) - d = {:access_token=>token, :token_type => 'bearer'} + def as_json(_options = {}) + d = { :access_token => token, :token_type => "bearer" } d[:expires_in] = expires_in if expires_at d end def to_query q = "access_token=#{token}&token_type=bearer" - q << "&state=#{URI.escape(state)}" if @state + q << "&state=#{CGI.escape(state)}" if @state q << "&expires_in=#{expires_in}" if expires_at - q << "&scope=#{URI.escape(scope)}" if scope + q << "&scope=#{CGI.escape(scope)}" if scope q end