From 7edf7a009a7ba62bb43b5bdf72d613b4002429fe Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 9 Nov 2019 09:18:17 +0000 Subject: [PATCH] cleanup: rubocop: fix Layout/AlignArguments in app/models/project_query.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19000 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/project_query.rb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/models/project_query.rb b/app/models/project_query.rb index 25ee7a861..49c8f5e99 100644 --- a/app/models/project_query.rb +++ b/app/models/project_query.rb @@ -39,19 +39,25 @@ class ProjectQuery < Query end def initialize_available_filters - add_available_filter "status", + add_available_filter( + "status", :type => :list, :values => lambda { project_statuses_values } - add_available_filter("id", + ) + add_available_filter( + "id", :type => :list, :values => lambda { project_values }, :label => :field_project ) add_available_filter "name", :type => :text add_available_filter "description", :type => :text - add_available_filter("parent_id", + add_available_filter( + "parent_id", :type => :list_subprojects, :values => lambda { project_values }, :label => :field_parent ) - add_available_filter "is_public", + add_available_filter( + "is_public", :type => :list, :values => [[l(:general_text_yes), "1"], [l(:general_text_no), "0"]] + ) add_available_filter "created_on", :type => :date_past add_custom_fields_filters(project_custom_fields) end -- 2.39.5