summaryrefslogtreecommitdiff
path: root/lib/api/entities/basic_repository_storage_move.rb
blob: 3ee112fb9a2ff945d212c4061b88c7bf858196e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module API
  module Entities
    class BasicRepositoryStorageMove < Grape::Entity
      expose :id
      expose :created_at
      expose :human_state_name, as: :state
      expose :source_storage_name
      expose :destination_storage_name
    end
  end
end