debian-mirror-gitlab/app/events/ci/job_artifacts_deleted_event.rb
2022-04-04 11:22:00 +05:30

20 lines
414 B
Ruby

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