]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/oauth_token.rb
Update some more queries to use AREL in place of deprecated methods
[rails.git] / app / models / oauth_token.rb
index c45a3d569e0bdc8f7f2af78c9c7cef5dd0a3c160..376ad76443453b391644f0e075117f87d25bbd62 100644 (file)
@@ -1,8 +1,12 @@
 class OauthToken < ActiveRecord::Base
   belongs_to :client_application
   belongs_to :user
+
+  scope :authorized, where("authorized_at IS NOT NULL and invalidated_at IS NULL")
+
   validates_uniqueness_of :token
   validates_presence_of :client_application, :token, :secret
+
   before_validation :generate_keys, :on => :create
   
   def self.find_token(token_key)