2022-03-02 08:16:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
|
|
|
class PipelineCreatedEvent < ::Gitlab::EventStore::Event
|
|
|
|
def schema
|
|
|
|
{
|
|
|
|
'type' => 'object',
|
2022-06-21 17:19:12 +05:30
|
|
|
'required' => ['pipeline_id'],
|
2022-03-02 08:16:31 +05:30
|
|
|
'properties' => {
|
|
|
|
'pipeline_id' => { 'type' => 'integer' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|