Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_hook_service.rb « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e85e58751e781ced2603aa0ea0310531b861d76b (plain)
1
2
3
4
5
6
class TestHookService
  def execute(hook, current_user)
    data = Gitlab::PushDataBuilder.build_sample(hook.project, current_user)
    hook.execute(data, 'push_hooks')
  end
end