forked from AkkomaGang/akkoma
add suggestionsThirdPartyEngine into /nodeinfo/2.0.json
This commit is contained in:
parent
d76f0d87be
commit
2b7b1b3e6b
1 changed files with 3 additions and 1 deletions
|
@ -21,6 +21,7 @@ def schemas(conn, _params) do
|
|||
def nodeinfo(conn, %{"version" => "2.0"}) do
|
||||
instance = Application.get_env(:pleroma, :instance)
|
||||
media_proxy = Application.get_env(:pleroma, :media_proxy)
|
||||
suggestions = Application.get_env(:pleroma, :suggestions)
|
||||
stats = Stats.get_stats()
|
||||
|
||||
response = %{
|
||||
|
@ -43,7 +44,8 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
|
|||
},
|
||||
metadata: %{
|
||||
nodeName: Keyword.get(instance, :name),
|
||||
mediaProxy: Keyword.get(media_proxy, :enabled)
|
||||
mediaProxy: Keyword.get(media_proxy, :enabled),
|
||||
suggestionsThirdPartyEngine: Keyword.get(@suggestions, :third_party_engine, false)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue