gitlab-org--gitlab-foss/app/services/test_hook_service.rb
2015-05-08 16:49:03 +03:00

6 lines
179 B
Ruby

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