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

snippet_repository_storage_move.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee86816bd14fc7b29a0e6a2f03d6a90c3525005b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class SnippetRepositoryStorageMove < BasicRepositoryStorageMove
      expose :snippet, using: Entities::BasicSnippet
    end
  end
end