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

wiki_page.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b2c951ecf25d5553103086233618e131d03c294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module API
  module Entities
    class WikiPage < WikiPageBasic
      include ::MarkupHelper

      expose :content, documentation: {
        type: 'string', example: 'Here is an instruction how to deploy this project.'
      } do |wiki_page, options|
        if options[:render_html]
          render_wiki_content(
            wiki_page,
            ref: wiki_page.version.id,
            current_user: options[:current_user]
          )
        else
          wiki_page.raw_content
        end
      end

      expose :encoding, documentation: { type: 'string', example: 'UTF-8' } do |wiki_page|
        wiki_page.content.encoding.name
      end

      expose :front_matter, documentation: { type: 'Hash', example: { title: "deploy" } }, if: ->(wiki_page) {
        ::Feature.enabled?(:wiki_front_matter_title, wiki_page.container)
      }
    end
  end
end

API::Entities::WikiPage.prepend_mod