1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 22:13:48 -05:00

12 lines
252 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class NodeInfo::DiscoverySerializer < ActiveModel::Serializer
include RoutingHelper
attribute :links
def links
[{ rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0', href: nodeinfo_schema_url }]
end
end