blob: 7710efed3abfe96a310b43b4a4dc45c94a8275ea (
plain)
1
2
3
4
5
6
7
8
9
10
|
# frozen_string_literal: true
class DeploymentSerializer < BaseSerializer
entity DeploymentEntity
def represent_concise(resource, opts = {})
opts[:only] = [:iid, :id, :sha, :created_at, :deployed_at, :tag, :last?, :is_last, :id, ref: [:name]]
represent(resource, opts)
end
end
|