summaryrefslogtreecommitdiff
path: root/app/services/test_hooks/system_service.rb
blob: 67552edefc9a79813486353ee453fb6d7a58def7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module TestHooks
  class SystemService < TestHooks::BaseService
    private

    def push_events_data
      Gitlab::DataBuilder::Push.sample_data
    end

    def tag_push_events_data
      Gitlab::DataBuilder::Push.sample_data
    end

    def repository_update_events_data
      Gitlab::DataBuilder::Repository.sample_data
    end
  end
end