gitlab-org--gitlab-foss/app/services/test_hook_service.rb

7 lines
181 B
Ruby

class TestHookService
def execute(hook, current_user)
data = Gitlab::DataBuilder::Push.build_sample(hook.project, current_user)
hook.execute(data, 'push_hooks')
end
end