20 lines
414 B
Ruby
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
|