WebFinger: add subscribe_address in return data of JSON responses

This commit is contained in:
FiveYellowMice 2020-12-18 13:48:38 +00:00
parent afc68a052c
commit 83cd7f2b5f
1 changed files with 3 additions and 0 deletions

View File

@ -116,6 +116,9 @@ defmodule Pleroma.Web.WebFinger do
{"application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"", "self"} ->
Map.put(data, "ap_id", link["href"])
{nil, "http://ostatus.org/schema/1.0/subscribe"} ->
Map.put(data, "subscribe_address", link["template"])
_ ->
Logger.debug("Unhandled type: #{inspect(link["type"])}")
data