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: 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