gitlab-org--gitlab-foss/app/services/test_hooks/system_service.rb

18 lines
343 B
Ruby
Raw Normal View History

2017-07-20 15:12:06 +00:00
module TestHooks
class SystemService < TestHooks::BaseService
private
def push_events_data
Gitlab::DataBuilder::Push.sample_data
2017-07-20 15:12:06 +00:00
end
def tag_push_events_data
Gitlab::DataBuilder::Push.sample_data
2017-07-20 15:12:06 +00:00
end
def repository_update_events_data
Gitlab::DataBuilder::Repository.sample_data
2017-07-20 15:12:06 +00:00
end
end
end