Makes models #initialize accept additional arguments.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8287 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-12-18 13:26:20 +00:00
parent 5eed64b848
commit 062fbeae80
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ class CustomField < ActiveRecord::Base
validate :validate_values
before_validation :set_searchable
def initialize(attributes = nil)
def initialize(attributes=nil, *args)
super
self.possible_values ||= []
end

View File

@ -95,7 +95,7 @@ class Project < ActiveRecord::Base
end
}
def initialize(attributes = nil)
def initialize(attributes=nil, *args)
super
initialized = (attributes || {}).stringify_keys

View File

@ -163,7 +163,7 @@ class Query < ActiveRecord::Base
}
}
def initialize(attributes = nil)
def initialize(attributes=nil, *args)
super attributes
self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} }
end

View File

@ -23,7 +23,7 @@ class UserPreference < ActiveRecord::Base
before_save :set_others_hash
def initialize(attributes = nil)
def initialize(attributes=nil, *args)
super
self.others ||= {}
end