Change block parameter name to params
This commit is contained in:
parent
0e99daae4a
commit
e13b5dc754
2 changed files with 3 additions and 3 deletions
|
@ -227,7 +227,7 @@ module IssuableActions
|
|||
{
|
||||
target: @issuable,
|
||||
notes_filter: notes_filter
|
||||
}.tap { |hash| hash[:project] = project if respond_to?(:project, true) }
|
||||
}.tap { |new_params| new_params[:project] = project if respond_to?(:project, true) }
|
||||
end
|
||||
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
||||
end
|
||||
|
|
|
@ -27,8 +27,8 @@ class Snippets::NotesController < ApplicationController
|
|||
alias_method :noteable, :snippet
|
||||
|
||||
def finder_params
|
||||
params.merge(last_fetched_at: last_fetched_at, target_id: snippet.id, target_type: 'personal_snippet').tap do |hash|
|
||||
hash[:project] = project if respond_to?(:project)
|
||||
params.merge(last_fetched_at: last_fetched_at, target_id: snippet.id, target_type: 'personal_snippet').tap do |merged_params|
|
||||
merged_params[:project] = project if respond_to?(:project)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue