about summary refs log tree commit diff
path: root/app/serializers/rest/privacy_policy_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/rest/privacy_policy_serializer.rb')
-rw-r--r--app/serializers/rest/privacy_policy_serializer.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/serializers/rest/privacy_policy_serializer.rb b/app/serializers/rest/privacy_policy_serializer.rb
new file mode 100644
index 000000000..f0572e714
--- /dev/null
+++ b/app/serializers/rest/privacy_policy_serializer.rb
@@ -0,0 +1,19 @@
+# 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