about summary refs log tree commit diff
path: root/app/serializers/rest/extended_description_serializer.rb
blob: 0c3649033316ce05f752d5b1913d22dbaba023ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class REST::ExtendedDescriptionSerializer < ActiveModel::Serializer
  attributes :updated_at, :content

  def updated_at
    object.updated_at&.iso8601
  end

  def content
    object.text
  end
end