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

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

module API
  module Entities
    class JobBasicWithProject < Entities::JobBasic
      expose :project, with: Entities::ProjectIdentity
    end
  end
end