8 lines
238 B
Ruby
8 lines
238 B
Ruby
class DeploymentSerializer < BaseSerializer
|
|
entity DeploymentEntity
|
|
|
|
def represent_concise(resource, opts = {})
|
|
opts[:only] = [:iid, :id, :sha, :created_at, :tag, :last?, :id, ref: [:name]]
|
|
represent(resource, opts)
|
|
end
|
|
end
|