2020-01-26 10:09:11 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class WikiPage < WikiPageBasic
|
|
|
|
expose :content
|
2022-02-24 13:19:04 -05:00
|
|
|
|
|
|
|
expose :encoding do |wiki_page|
|
|
|
|
wiki_page.content.encoding.name
|
|
|
|
end
|
2020-01-26 10:09:11 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|