Commit 0e274dfc authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Remove unneeded check for merge_request.project

parent 1d5f5aa8
...@@ -17,11 +17,9 @@ module MergeRequests ...@@ -17,11 +17,9 @@ module MergeRequests
end end
def execute_hooks(merge_request, action = 'open', old_rev: nil, old_associations: {}) def execute_hooks(merge_request, action = 'open', old_rev: nil, old_associations: {})
if merge_request.project merge_data = hook_data(merge_request, action, old_rev: old_rev, old_associations: old_associations)
merge_data = hook_data(merge_request, action, old_rev: old_rev, old_associations: old_associations) merge_request.project.execute_hooks(merge_data, :merge_request_hooks)
merge_request.project.execute_hooks(merge_data, :merge_request_hooks) merge_request.project.execute_services(merge_data, :merge_request_hooks)
merge_request.project.execute_services(merge_data, :merge_request_hooks)
end
end end
def cleanup_environments(merge_request) def cleanup_environments(merge_request)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment