mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-12 04:31:11 +00:00
15 lines
359 B
Ruby
15 lines
359 B
Ruby
# 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 },
|
|
{ rel: 'https://www.w3.org/ns/activitystreams#Application', href: instance_actor_url },
|
|
]
|
|
end
|
|
end
|