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

repository_serializer.rb « harbor_serializers « integrations « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b9e089eab8ddc2c5f1536374226f2220d1115df (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Integrations
  module HarborSerializers
    class RepositorySerializer < BaseSerializer
      include WithPagination

      entity ::Integrations::HarborSerializers::RepositoryEntity
    end
  end
end