X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/55d511bf21dfc4e1b7d0666a2a547b1d3c3845b0..3a599519eb49c2211bbb513fbbda65a05068b9e5:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 0eddb259d..85d971316 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,6 +1,8 @@ class User < ActiveRecord::Base require 'xml/libxml' + belongs_to :language, :foreign_key => 'locale' + has_many :traces has_many :diary_entries, :order => 'created_at DESC' has_many :messages, :foreign_key => :to_user_id, :order => 'sent_on DESC' @@ -30,7 +32,7 @@ class User < ActiveRecord::Base file_column :image, :magick => { :geometry => "100x100>" } def after_initialize - self.creation_time = Time.now if self.creation_time.nil? + self.creation_time = Time.now.getutc if self.creation_time.nil? end def encrypt_password @@ -110,4 +112,17 @@ class User < ActiveRecord::Base return self.preferences.find(:first, :conditions => {:k => "gps.trace.public", :v => "default"}) end + def delete + self.active = false + self.display_name = "user_#{self.id}" + self.description = "" + self.home_lat = nil + self.home_lon = nil + self.image = nil + self.email_valid = false + self.new_email = nil + self.visible = false + self.save + end + end