debian-mirror-gitlab/lib/api/entities/batched_background_migration.rb
2022-10-11 01:57:18 +05:30

14 lines
286 B
Ruby

# frozen_string_literal: true
module API
module Entities
class BatchedBackgroundMigration < Grape::Entity
expose :id
expose :job_class_name
expose :table_name
expose :status, &:status_name
expose :progress
expose :created_at
end
end
end