gitlab-org--gitlab-foss/lib/api/entities/wiki_page.rb

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

26 lines
528 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
module Entities
class WikiPage < WikiPageBasic
include ::MarkupHelper
expose :content 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.content
end
end
expose :encoding do |wiki_page|
wiki_page.content.encoding.name
end
end
end
end