]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth2_token.rb
Merge remote-tracking branch 'upstream/pull/5232'
[rails.git] / app / models / oauth2_token.rb
diff --git a/app/models/oauth2_token.rb b/app/models/oauth2_token.rb
deleted file mode 100644 (file)
index 9c28d88..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-class Oauth2Token < AccessToken
-  attr_accessor :state
-
-  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 << "&expires_in=#{expires_in}" if expires_at
-    q << "&scope=#{URI.escape(scope)}" if scope
-    q
-  end
-
-  def expires_in
-    expires_at.to_i - Time.now.to_i
-  end
-end