You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
252 B

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