Welcome to mirror list, hosted at ThFree Co, Russian Federation.

job_artifacts_deleted_event.rb « ci « events « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d85c0cfbee34b39b2f6f0e5d8386515348e8af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Ci
  class JobArtifactsDeletedEvent < ::Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'required' => ['job_ids'],
        'properties' => {
          'job_ids' => {
            'type' => 'array',
            'items' => {
              'type' => 'integer'
            }
          }
        }
      }
    end
  end
end