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

git-svn-id: http://svn.redmine.org/redmine/trunk@19009 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-09 11:53:48 +00:00
parent f59fdeeb4a
commit b31b57f82d
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,6 @@ Layout/AlignHash:
# SupportedStylesAlignWith: either, start_of_block, start_of_line
Layout/BlockAlignment:
Exclude:
- 'app/models/project.rb'
- 'app/models/time_entry.rb'
# Cop supports --auto-correct.

View File

@@ -754,7 +754,8 @@ class Project < ActiveRecord::Base
safe_attributes(
'enabled_module_names',
:if => lambda {|project, user|
:if =>
lambda {|project, user|
if project.new_record?
if user.admin?
true