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|
|
|
|
|
options[:render_html] ? render_wiki_content(wiki_page, ref: wiki_page.version.id) : wiki_page.content
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :encoding do |wiki_page|
|
|
|
|
wiki_page.content.encoding.name
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|