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
|
|
|
|
|
|
|
|
expose :content 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
|
|
|
|
|
|
|
|
expose :encoding do |wiki_page|
|
|
|
|
wiki_page.content.encoding.name
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|