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

build_metadata_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71c7295ba9f6faf0989854072e71d02b16153c25 (plain)
1
2
3
4
5
6
7
8
9
10
class BuildMetadataEntity < Grape::Entity

  expose :used_timeout_human_readable do |metadata|
    metadata.used_timeout_human_readable unless metadata.used_timeout.nil?
  end

  expose :timeout_source do |metadata|
    metadata.present.timeout_source
  end
end