Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bridge.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f0ee69399ad1d6b0bcb5ae627a80d85ae36f7fc (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class Bridge < Entities::JobBasic
      expose :downstream_pipeline, with: Entities::PipelineBasic
    end
  end
end