15 lines
264 B
Ruby
15 lines
264 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Ci
|
||
|
class PipelineCreatedEvent < ::Gitlab::EventStore::Event
|
||
|
def schema
|
||
|
{
|
||
|
'type' => 'object',
|
||
|
'properties' => {
|
||
|
'pipeline_id' => { 'type' => 'integer' }
|
||
|
}
|
||
|
}
|
||
|
end
|
||
|
end
|
||
|
end
|