mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BuildMetadataEntity < Grape::Entity
|
|
expose :timeout_human_readable
|
|
expose :timeout_source do |metadata|
|
|
metadata.present.timeout_source
|
|
end
|
|
end
|