]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user.rb
New migration to add better auditing to user_roles and better column names there...
[rails.git] / app / models / user.rb
index 36d3df3b407015cfc8b9f8edf052083689b39708..5268446724c9dd587d5c0e46ecbf883191792188 100644 (file)
@@ -14,7 +14,7 @@ class User < ActiveRecord::Base
   has_many :client_applications
   has_many :oauth_tokens, :class_name => "OauthToken", :order => "authorized_at desc", :include => [:client_application]
 
-  has_many :blocks, :class_name => "UserBlock", :conditions => ["user_blocks.end_at > now() or user_blocks.needs_view"]
+  has_many :blocks, :class_name => "UserBlock", :conditions => ["user_blocks.ends_at > now() or user_blocks.needs_view"]
   has_many :roles, :class_name => "UserRole"
 
   validates_presence_of :email, :display_name