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

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

module API
  module Entities
    module Dictionary
      class Table < Grape::Entity
        expose :table_name, documentation: { type: :string, example: 'users' }
        expose :feature_categories, documentation: { type: :array, example: ['database'] }
      end
    end
  end
end