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

stage_serializer.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 091d8e91e433dabe6ec18491e987ba4c1224593e (plain)
1
2
3
4
5
6
7
class StageSerializer < BaseSerializer
  include WithPagination

  InvalidResourceError = Class.new(StandardError)

  entity StageEntity
end