summaryrefslogtreecommitdiff
path: root/app/serializers/deployment_serializer.rb
blob: 3fd3e1b9cc8aaddd43c2a066533ef0c89834cc1a (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, :finished_at, :tag, :last?, :id, ref: [:name]]
    represent(resource, opts)
  end
end