diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-08-06 04:03:01 +0200 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-08-06 04:03:01 +0200 |
commit | c9aa19881cf719baaea1bbb9bb00f84145a99b8b (patch) | |
tree | 59a90d5ae7fd50a27bb3a389c721b3bc228b9cc1 /app/helpers | |
parent | aa49c20e81210d8b397287eb1ec10a29bcd2f132 (diff) | |
download | gitlab-ce-rubocop/SpaceAroundEqualsInParameterDefault.tar.gz |
Enable Style/SpaceAroundEqualsInParameterDefault coprubocop/SpaceAroundEqualsInParameterDefault
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/explore_helper.rb | 2 | ||||
-rw-r--r-- | app/helpers/search_helper.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/explore_helper.rb b/app/helpers/explore_helper.rb index 337b0aacbb5..2b1f3825adc 100644 --- a/app/helpers/explore_helper.rb +++ b/app/helpers/explore_helper.rb @@ -1,5 +1,5 @@ module ExploreHelper - def filter_projects_path(options={}) + def filter_projects_path(options = {}) exist_opts = { sort: params[:sort], scope: params[:scope], diff --git a/app/helpers/search_helper.rb b/app/helpers/search_helper.rb index a2bba139c17..c0195713f4a 100644 --- a/app/helpers/search_helper.rb +++ b/app/helpers/search_helper.rb @@ -107,7 +107,7 @@ module SearchHelper Sanitize.clean(str) end - def search_filter_path(options={}) + def search_filter_path(options = {}) exist_opts = { search: params[:search], project_id: params[:project_id], |