diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-09 09:07:48 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-09 09:07:48 +0000 |
commit | 10e29f22239e899072d922e2788843ee3785a76d (patch) | |
tree | a549bdbe0a237f6876715f29ae1d628eb245271d /app | |
parent | 1871378648e1a35aa3afa8b80335215a22a956ec (diff) | |
download | redmine-10e29f22239e899072d922e2788843ee3785a76d.tar.gz redmine-10e29f22239e899072d922e2788843ee3785a76d.zip |
Accept custom field format added at runtime (#15277).
Patch by Boris Bera.
git-svn-id: http://svn.redmine.org/redmine/trunk@12248 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/custom_field.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/custom_field.rb b/app/models/custom_field.rb index 34b9fb53d..055516c38 100644 --- a/app/models/custom_field.rb +++ b/app/models/custom_field.rb @@ -26,7 +26,7 @@ class CustomField < ActiveRecord::Base validates_presence_of :name, :field_format validates_uniqueness_of :name, :scope => :type validates_length_of :name, :maximum => 30 - validates_inclusion_of :field_format, :in => Redmine::CustomFieldFormat.available_formats + validates_inclusion_of :field_format, :in => Proc.new { Redmine::CustomFieldFormat.available_formats } validate :validate_custom_field before_validation :set_searchable |