1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

cleanup: rubocop: fix Layout/AlignArguments in app/models/project.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18998 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-09 09:18:07 +00:00
parent 894aa10ffc
commit 8688fd10eb

View File

@ -738,7 +738,8 @@ class Project < ActiveRecord::Base
target.destroy unless target.blank?
end
safe_attributes 'name',
safe_attributes(
'name',
'description',
'homepage',
'is_public',
@ -749,9 +750,10 @@ class Project < ActiveRecord::Base
'issue_custom_field_ids',
'parent_id',
'default_version_id',
'default_assigned_to_id'
'default_assigned_to_id')
safe_attributes 'enabled_module_names',
safe_attributes(
'enabled_module_names',
:if => lambda {|project, user|
if project.new_record?
if user.admin?
@ -762,10 +764,11 @@ class Project < ActiveRecord::Base
else
user.allowed_to?(:select_project_modules, project)
end
}
})
safe_attributes 'inherit_members',
:if => lambda {|project, user| project.parent.nil? || project.parent.visible?(user)}
safe_attributes(
'inherit_members',
:if => lambda {|project, user| project.parent.nil? || project.parent.visible?(user)})
def safe_attributes=(attrs, user=User.current)
if attrs.respond_to?(:to_unsafe_hash)