gitlab-org--gitlab-foss/lib/api/entities/ci/bridge.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
210 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
module Entities
module Ci
class Bridge < JobBasic
expose :downstream_pipeline, with: ::API::Entities::Ci::PipelineBasic
end
end
end
end