debian-mirror-gitlab/lib/api/entities/wiki_page_basic.rb
2023-01-12 18:35:48 +00:00

12 lines
342 B
Ruby

# frozen_string_literal: true
module API
module Entities
class WikiPageBasic < Grape::Entity
expose :format, documentation: { type: 'string', example: 'markdown' }
expose :slug, documentation: { type: 'string', example: 'deploy' }
expose :title, documentation: { type: 'string', example: 'deploy' }
end
end
end