summaryrefslogtreecommitdiff
path: root/lib/api/entities/ci/pipeline_basic.rb
blob: 8086062dc9bc3b946ce96588e26171d0b9c05301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module API
  module Entities
    module Ci
      class PipelineBasic < Grape::Entity
        expose :id, :project_id, :sha, :ref, :status
        expose :created_at, :updated_at

        expose :source, if: ->(pipeline, options) { ::Feature.enabled?(:pipeline_source_filter, options[:project], default_enabled: :yaml) }

        expose :web_url do |pipeline, _options|
          Gitlab::Routing.url_helpers.project_pipeline_url(pipeline.project, pipeline)
        end
      end
    end
  end
end