debian-mirror-gitlab/app/events/ci/pipeline_created_event.rb
2022-03-02 08:16:31 +05:30

14 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