diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:53:32 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:53:32 +0000 |
commit | f25c3bdc7e0bf815c0d156619b68826ae876ce36 (patch) | |
tree | 7134fe1bb8402dc5526b50dd165f9f6d7ba13abe /app | |
parent | c40714edd13566bfb51eb08273489172d8f630a2 (diff) | |
download | redmine-f25c3bdc7e0bf815c0d156619b68826ae876ce36.tar.gz redmine-f25c3bdc7e0bf815c0d156619b68826ae876ce36.zip |
cleanup: rubocop: fix Layout/AlignArguments in app/models/issue_custom_field.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18962 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/issue_custom_field.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/issue_custom_field.rb b/app/models/issue_custom_field.rb index f6bf80976..14d29a9e6 100644 --- a/app/models/issue_custom_field.rb +++ b/app/models/issue_custom_field.rb @@ -23,7 +23,7 @@ class IssueCustomField < CustomField has_many :issues, :through => :issue_custom_values safe_attributes 'project_ids', - 'tracker_ids' + 'tracker_ids' def type_name :label_issue_plural |