mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
Rename IssuableBaseService#have_changes? to has_changes?
This commit is contained in:
@@ -71,7 +71,7 @@ class IssuableBaseService < BaseService
|
||||
end
|
||||
end
|
||||
|
||||
def have_changes?(issuable, options = {})
|
||||
def has_changes?(issuable, options = {})
|
||||
valid_attrs = [:title, :description, :assignee_id, :milestone_id, :target_branch]
|
||||
|
||||
attrs_changed = valid_attrs.any? do |attr|
|
||||
|
||||
@@ -5,7 +5,7 @@ module Issues
|
||||
end
|
||||
|
||||
def handle_changes(issue, options = {})
|
||||
if have_changes?(issue, options)
|
||||
if has_changes?(issue, options)
|
||||
task_service.mark_pending_tasks_as_done(issue, current_user)
|
||||
end
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ module MergeRequests
|
||||
end
|
||||
|
||||
def handle_changes(merge_request, options = {})
|
||||
if have_changes?(merge_request, options)
|
||||
if has_changes?(merge_request, options)
|
||||
task_service.mark_pending_tasks_as_done(merge_request, current_user)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user