[Pleroma.Web.Nodeinfo.NodeinfoController]: Transparency on MRF Simple

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-09-05 23:06:55 +02:00
parent 4f03bb2299
commit 8226953f1d
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
chat = Application.get_env(:pleroma, :chat)
gopher = Application.get_env(:pleroma, :gopher)
stats = Stats.get_stats()
mrf_simple = Application.get_env(:pleroma, :mrf_simple)
staff_accounts =
User.moderator_user_query()
@ -64,7 +65,8 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
},
staffAccounts: staff_accounts,
chat: Keyword.get(chat, :enabled),
gopher: Keyword.get(gopher, :enabled)
gopher: Keyword.get(gopher, :enabled),
mrf_simple: Enum.into(mrf_simple, %{})
}
}