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: 93e82d34b1451278292e4eb8fd69419af7c7ba59 (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: :string, is_array: true, example: 'database' }
      end
    end
  end
end