debian-mirror-gitlab/lib/api/entities/wiki_page.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
693 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class WikiPage < WikiPageBasic
2022-05-07 20:08:51 +05:30
include ::MarkupHelper
2023-01-13 00:05:48 +05:30
expose :content, documentation: {
type: 'string', example: 'Here is an instruction how to deploy this project.'
} do |wiki_page, options|
2022-07-23 23:45:48 +05:30
if options[:render_html]
render_wiki_content(
wiki_page,
ref: wiki_page.version.id,
current_user: options[:current_user]
)
else
wiki_page.content
end
2022-05-07 20:08:51 +05:30
end
2023-01-13 00:05:48 +05:30
expose :encoding, documentation: { type: 'string', example: 'UTF-8' } do |wiki_page|
2022-05-07 20:08:51 +05:30
wiki_page.content.encoding.name
end
2020-03-13 15:44:24 +05:30
end
end
end