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: f16f3badffa0a8cfaec0c3417c6f10e15fcfd4cb (plain)
1
2
3
4
5
6
class BuildMetadataEntity < Grape::Entity
  expose :timeout_human_readable
  expose :timeout_source do |metadata|
    metadata.present.timeout_source
  end
end