Class: UserPreference

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/user_preference.rb

Overview

Redmine - project management software Copyright (C) 2006-2016 Jean-Philippe Lang

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Since:

  • 0.4.0

Instance Method Summary collapse

Constructor Details

#initialize(attributes = nil, *args) ⇒ UserPreference

Returns a new instance of UserPreference



26
27
28
29
30
31
32
33
34
35
# File 'app/models/user_preference.rb', line 26

def initialize(attributes=nil, *args)
  super
  if new_record? && !(attributes && attributes.key?(:hide_mail))
    self.hide_mail = Setting.default_users_hide_mail?
  end
  if new_record? && !(attributes && attributes.key?(:no_self_notified))
    self.no_self_notified = true
  end
  self.others ||= {}
end

Instance Method Details

#[](attr_name) ⇒ Object



41
42
43
44
45
46
47
# File 'app/models/user_preference.rb', line 41

def [](attr_name)
  if has_attribute? attr_name
    super
  else
    others ? others[attr_name] : nil
  end
end

#[]=(attr_name, value) ⇒ Object



49
50
51
52
53
54
55
56
57
58
# File 'app/models/user_preference.rb', line 49

def []=(attr_name, value)
  if has_attribute? attr_name
    super
  else
    h = (read_attribute(:others) || {}).dup
    h.update(attr_name => value)
    write_attribute(:others, h)
    value
  end
end

#activity_scopeObject

Since:

  • 3.2.0



69
# File 'app/models/user_preference.rb', line 69

def activity_scope; Array(self[:activity_scope]) ; end

#activity_scope=(value) ⇒ Object

Since:

  • 3.2.0



70
# File 'app/models/user_preference.rb', line 70

def activity_scope=(value); self[:activity_scope]=value ; end

#comments_sortingObject

Since:

  • 0.7.0



60
# File 'app/models/user_preference.rb', line 60

def comments_sorting; self[:comments_sorting] end

#comments_sorting=(order) ⇒ Object

Since:

  • 0.7.0



61
# File 'app/models/user_preference.rb', line 61

def comments_sorting=(order); self[:comments_sorting]=order end

#no_self_notifiedObject

Since:

  • 2.3.2



66
# File 'app/models/user_preference.rb', line 66

def no_self_notified; (self[:no_self_notified] == true || self[:no_self_notified] == '1'); end

#no_self_notified=(value) ⇒ Object

Since:

  • 2.3.2



67
# File 'app/models/user_preference.rb', line 67

def no_self_notified=(value); self[:no_self_notified]=value; end

#set_others_hashObject

Since:

  • 1.4.0



37
38
39
# File 'app/models/user_preference.rb', line 37

def set_others_hash
  self.others ||= {}
end

#warn_on_leaving_unsavedObject

Since:

  • 1.2.0



63
# File 'app/models/user_preference.rb', line 63

def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end

#warn_on_leaving_unsaved=(value) ⇒ Object

Since:

  • 1.2.0



64
# File 'app/models/user_preference.rb', line 64

def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end