blob: b48037dd53f735e21e408fa83b2843ab4b7f8152 (
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?, :id, ref: [:name]]
represent(resource, opts)
end
end
|