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

8 lines
165 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
module Ci
class TestHookService
def execute(hook, current_user)
Ci::WebHookService.new.build_end(hook.project.commits.last.last_build)
end
end
end