diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:53:46 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:53:46 +0000 |
commit | 36373de2b96909dbd866019f4f3c3736a78b9b1b (patch) | |
tree | 299ad326e8e0396c375f83c6702bf8ceeb16b5b1 /app | |
parent | 362e553d5eb611cf1b966e8ea1b6d480500c6f37 (diff) | |
download | redmine-36373de2b96909dbd866019f4f3c3736a78b9b1b.tar.gz redmine-36373de2b96909dbd866019f4f3c3736a78b9b1b.zip |
cleanup: rubocop: fix Layout/AlignArguments in app/models/tracker.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18964 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/tracker.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/tracker.rb b/app/models/tracker.rb index b2c80be2f..a3357866d 100644 --- a/app/models/tracker.rb +++ b/app/models/tracker.rb @@ -66,14 +66,15 @@ class Tracker < ActiveRecord::Base joins(:projects).where(condition).distinct } - safe_attributes 'name', + safe_attributes( + 'name', 'default_status_id', 'is_in_roadmap', 'core_fields', 'position', 'custom_field_ids', 'project_ids', - 'description' + 'description') def to_s; name end |