blob: cba5c3f311f77f9ad3e5a84bedb7381639b86fcc (
plain)
1
2
3
4
5
6
7
8
|
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
|