b9c19f6b0f
This change makes it possible to avoid additional serialization of entire pipeline when rendering a build details page. Instead we expose more information from the build entity itself what is much cheaper than serializing entire pipeline. Additionally we do not need to serialize `latest?` flag, which involves multiple Gitaly calls.
13 lines
325 B
Ruby
13 lines
325 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineDetailsEntity < PipelineEntity
|
|
expose :flags do
|
|
expose :latest?, as: :latest
|
|
end
|
|
|
|
expose :details do
|
|
expose :artifacts, using: BuildArtifactEntity
|
|
expose :manual_actions, using: BuildActionEntity
|
|
expose :scheduled_actions, using: BuildActionEntity
|
|
end
|
|
end
|