2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
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
|