]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth2_token.rb
Fix most auto-correctable rubocop issues
[rails.git] / app / models / oauth2_token.rb
index 9c28d886e0c8e6392a4127e9a829b4588f39481f..6dd421ab13c80255f075a7a28d457cc29b1ca4c4 100644 (file)
@@ -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