From ec488e63794b8bb79a080d16d5ce211b47cbc7c8 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 26 Sep 2020 15:01:28 +0000 Subject: [PATCH] use "do end" instead of {} at app/models/project.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20079 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/project.rb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/models/project.rb b/app/models/project.rb index 5fd3c4a0c..839e39a28 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -780,7 +780,7 @@ class Project < ActiveRecord::Base safe_attributes( 'enabled_module_names', :if => - lambda {|project, user| + lambda do |project, user| if project.new_record? if user.admin? true @@ -790,7 +790,8 @@ class Project < ActiveRecord::Base else user.allowed_to?(:select_project_modules, project) end - }) + end + ) safe_attributes( 'inherit_members', @@ -1041,7 +1042,10 @@ class Project < ActiveRecord::Base new_issue.project = self # Changing project resets the custom field values # TODO: handle this in Issue#project= - new_issue.custom_field_values = issue.custom_field_values.inject({}) {|h,v| h[v.custom_field_id] = v.value; h} + new_issue.custom_field_values = issue.custom_field_values.inject({}) do |h, v| + h[v.custom_field_id] = v.value + h + end # Reassign fixed_versions by name, since names are unique per project if issue.fixed_version && issue.fixed_version.project == project new_issue.fixed_version = self.versions.detect {|v| v.name == issue.fixed_version.name} @@ -1183,7 +1187,9 @@ class Project < ActiveRecord::Base end def allowed_actions - @actions_allowed ||= allowed_permissions.inject([]) { |actions, permission| actions += Redmine::AccessControl.allowed_actions(permission) }.flatten + @actions_allowed ||= allowed_permissions.inject([]) do |actions, permission| + actions += Redmine::AccessControl.allowed_actions(permission) + end.flatten end # Archives subprojects recursively -- 2.39.5