summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2018-09-15 06:45:10 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2018-09-15 06:45:10 +0000
commit9d00ca96a1fa33df8d89b50c845d44d7ce3f2a02 (patch)
tree894bda9d9eab45df4807e59da4054e2875364655 /app
parent5660b06f7bd3ed48bbfaed2e0a98281b4da463c2 (diff)
downloadredmine-9d00ca96a1fa33df8d89b50c845d44d7ce3f2a02.tar.gz
redmine-9d00ca96a1fa33df8d89b50c845d44d7ce3f2a02.zip
Custom field values for enumerations not saved (#28925).
Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@17484 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/controllers/enumerations_controller.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/app/controllers/enumerations_controller.rb b/app/controllers/enumerations_controller.rb
index e5e3cc3de..a04d7b184 100644
--- a/app/controllers/enumerations_controller.rb
+++ b/app/controllers/enumerations_controller.rb
@@ -91,8 +91,10 @@ class EnumerationsController < ApplicationController
def build_new_enumeration
class_name = params[:enumeration] && params[:enumeration][:type] || params[:type]
- @enumeration = Enumeration.new_subclass_instance(class_name, enumeration_params)
- if @enumeration.nil?
+ @enumeration = Enumeration.new_subclass_instance(class_name)
+ if @enumeration
+ @enumeration.attributes = enumeration_params || {}
+ else
render_404
end
end
@@ -105,6 +107,7 @@ class EnumerationsController < ApplicationController
def enumeration_params
# can't require enumeration on #new action
- params.permit(:enumeration => [:name, :active, :is_default, :position])[:enumeration]
+ cf_ids = @enumeration.available_custom_fields.map{|c| c.id.to_s}
+ params.permit(:enumeration => [:name, :active, :is_default, :position, :custom_field_values => cf_ids])[:enumeration]
end
end