summaryrefslogtreecommitdiff
path: root/app/events/ci/pipeline_created_event.rb
blob: 2f2bee0903a68f76071b448f895d1234e9c29302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Ci
  class PipelineCreatedEvent < ::Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'required' => ['pipeline_id'],
        'properties' => {
          'pipeline_id' => { 'type' => 'integer' }
        }
      }
    end
  end
end