1
0
mirror of https://github.com/whippyshou/mastodon synced 2025-01-02 16:03:08 +09:00
whippy-edition/app/serializers/rest/marker_serializer.rb

14 lines
240 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::MarkerSerializer < ActiveModel::Serializer
attributes :last_read_id, :version, :updated_at
def last_read_id
object.last_read_id.to_s
end
def version
object.lock_version
end
end