report chat and gopher support at /nodeinfo/2.0.json

This commit is contained in:
Hakaba Hitoyo 2018-09-03 21:13:30 +09:00
parent 7ca2a2ddea
commit b1124f1605
1 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,8 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
instance = Application.get_env(:pleroma, :instance)
media_proxy = Application.get_env(:pleroma, :media_proxy)
suggestions = Application.get_env(:pleroma, :suggestions)
chat = Application.get_env(:pleroma, :chat)
gopher = Application.get_env(:pleroma, :gopher)
stats = Stats.get_stats()
response = %{
@ -52,7 +54,9 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
thirdPartyEngine: Keyword.get(suggestions, :third_party_engine, ""),
timeout: Keyword.get(suggestions, :timeout, 5000),
web: Keyword.get(suggestions, :web, "")
}
},
chat: Keyword.get(chat, :enabled),
gopher: Keyword.get(gopher, :enabled)
}
}