1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-06 09:03:25 +00:00

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
This commit is contained in:
Toshi MARUYAMA 2019-11-08 14:53:46 +00:00
parent 362e553d5e
commit 36373de2b9

View File

@ -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