1
0
mirror of https://github.com/glitch-soc/mastodon synced 2024-03-09 07:35:42 +00:00
glitch-social/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