X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7b89dc63496de0b6131a93c57d283ebb4490804b..dae3dcf87edcfc0648cd0b93b069b0eee67d3ab7:/app/models/oauth2_token.rb diff --git a/app/models/oauth2_token.rb b/app/models/oauth2_token.rb index 9c28d886e..1e67194fe 100644 --- a/app/models/oauth2_token.rb +++ b/app/models/oauth2_token.rb @@ -1,8 +1,8 @@ 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