]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user.rb
Merged 16488:16743 from trunk.
[rails.git] / app / models / user.rb
index 5625527bd14d4d31abc5978abd8a68f24aaada1c..5b6a97f39d884d53aecb8db4109bd49f6fa42f48 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'