diff options
author | Toon Claes <toon@gitlab.com> | 2017-06-15 16:01:12 +0200 |
---|---|---|
committer | Toon Claes <toon@gitlab.com> | 2017-06-20 14:19:45 +0200 |
commit | a8d4bf9724ce6dce69240d4953c7d38b7f05a7dd (patch) | |
tree | ebd501dede12ddc2faa40e0a9209c8d603de6250 /app/helpers/search_helper.rb | |
parent | fd50d9ab8ec977183240b28d749cf2eb25014f41 (diff) | |
download | gitlab-ce-a8d4bf9724ce6dce69240d4953c7d38b7f05a7dd.tar.gz |
Use helper method to set filtered search input attributes
The list of attributes for the filtered search input was getting long, so use a
helper method to fill that hash.
Also, for multiple issue assignees, a helper is more convenient because it would
allow EE to override the behavior if MIA is supported.
Diffstat (limited to 'app/helpers/search_helper.rb')
-rw-r--r-- | app/helpers/search_helper.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/helpers/search_helper.rb b/app/helpers/search_helper.rb index 9c46035057f..5ea2c72f819 100644 --- a/app/helpers/search_helper.rb +++ b/app/helpers/search_helper.rb @@ -126,6 +126,18 @@ module SearchHelper search_path(options) end + def search_filter_input_options(type) + { + id: "filtered-search-#{type}", + placeholder: 'Search or filter results...', + data: { + 'project-id' => @project.id, + 'username-params' => @users.to_json(only: [:id, :username]), + 'base-endpoint' => namespace_project_path(@project.namespace, @project) + } + } + end + # Sanitize a HTML field for search display. Most tags are stripped out and the # maximum length is set to 200 characters. def search_md_sanitize(object, field) |