1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/serializers/rest/privacy_policy_serializer.rb

20 lines
425 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::PrivacyPolicySerializer < ActiveModel::Serializer
attributes :updated_at, :content
def updated_at
object.updated_at.iso8601
end
def content
markdown.render(object.text % { domain: Rails.configuration.x.local_domain })
end
private
def markdown
@markdown ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML, escape_html: true, no_images: true)
end
end