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

job.rb « ci « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fe1a802e24791e47ea97b009690ca6dfa554017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Entities
    module Ci
      class Job < JobBasic
        # artifacts_file is included in job_artifacts, but kept for backward compatibility (remove in api/v5)
        expose :artifacts_file, using: ::API::Entities::Ci::JobArtifactFile, if: -> (job, opts) { job.artifacts? }
        expose :job_artifacts, as: :artifacts, using: ::API::Entities::Ci::JobArtifact
        expose :runner, with: ::API::Entities::Runner
        expose :artifacts_expire_at
      end
    end
  end
end