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

group_variable_serializer.rb « ci « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b100a931620f462403a7e0f96890559778728dd7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module Ci
  class GroupVariableSerializer < BaseSerializer
    entity ::Ci::GroupVariableEntity
  end
end