This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
# 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
|