Merge branch 'fix/nodeinfo-nil-features' into 'develop'

Nodeinfo: remove null features; relay feature.

See merge request pleroma/pleroma!520
This commit is contained in:
lambda 2018-12-08 09:12:06 +00:00
commit beadeaffa1
1 changed files with 22 additions and 17 deletions

View File

@ -71,23 +71,28 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
%{} %{}
end end
features = [ features =
"pleroma_api", [
"mastodon_api", "pleroma_api",
"mastodon_api_streaming", "mastodon_api",
if Keyword.get(media_proxy, :enabled) do "mastodon_api_streaming",
"media_proxy" if Keyword.get(media_proxy, :enabled) do
end, "media_proxy"
if Keyword.get(gopher, :enabled) do end,
"gopher" if Keyword.get(gopher, :enabled) do
end, "gopher"
if Keyword.get(chat, :enabled) do end,
"chat" if Keyword.get(chat, :enabled) do
end, "chat"
if Keyword.get(suggestions, :enabled) do end,
"suggestions" if Keyword.get(suggestions, :enabled) do
end "suggestions"
] end,
if Keyword.get(instance, :allow_relay) do
"relay"
end
]
|> Enum.filter(& &1)
response = %{ response = %{
version: "2.0", version: "2.0",