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

project_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: 25643651a14a310701524af48edaa31a603a7dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    class ProjectRepositoryStorageMove < Grape::Entity
      expose :id
      expose :created_at
      expose :human_state_name, as: :state
      expose :source_storage_name
      expose :destination_storage_name
      expose :project, using: Entities::ProjectIdentity
    end
  end
end