gitlab-org--gitlab-foss/app/events/ci/pipeline_created_event.rb

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