summaryrefslogtreecommitdiff
path: root/app/services/test_hooks/system_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/test_hooks/system_service.rb')
-rw-r--r--app/services/test_hooks/system_service.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/services/test_hooks/system_service.rb b/app/services/test_hooks/system_service.rb
index 67552edefc9..9016c77b7f0 100644
--- a/app/services/test_hooks/system_service.rb
+++ b/app/services/test_hooks/system_service.rb
@@ -13,5 +13,12 @@ module TestHooks
def repository_update_events_data
Gitlab::DataBuilder::Repository.sample_data
end
+
+ def merge_requests_events_data
+ merge_request = MergeRequest.of_projects(current_user.projects.select(:id)).first
+ throw(:validation_error, 'Ensure one of your projects has merge requests.') unless merge_request.present?
+
+ merge_request.to_hook_data(current_user)
+ end
end
end