]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user.rb
Use method rather than direct access to member for the current token.
[rails.git] / app / models / user.rb
index 9a1106972d63d767c2b2806f3eb5a921d4e1577e..1e594479728bde84bdad8ae237b368c9820762a2 100644 (file)
@@ -11,6 +11,9 @@ class User < ActiveRecord::Base
   has_many :preferences, :class_name => "UserPreference"
   has_many :changesets
 
+  has_many :client_applications
+  has_many :oauth_tokens, :class_name => "OauthToken", :order => "authorized_at desc", :include => [:client_application]
+
   validates_presence_of :email, :display_name
   validates_confirmation_of :email#, :message => ' addresses must match'
   validates_confirmation_of :pass_crypt#, :message => ' must match the confirmation password'