Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deployment_serializer.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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