diff options
author | kaniini <nenolod@gmail.com> | 2018-09-03 14:55:42 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2018-09-03 14:55:42 +0000 |
commit | 76c67a41c12a80138e984fa782d7396da53b8d32 (patch) | |
tree | 5df0e23a10b29ee0dd31887919b8858253800296 /lib/pleroma/web/nodeinfo/nodeinfo_controller.ex | |
parent | d3f6814febb95f03af58543f4896599810f9b069 (diff) | |
parent | 1c9e539b47ff594d75c9548a04e64cb0c61cff8c (diff) | |
download | pleroma-76c67a41c12a80138e984fa782d7396da53b8d32.tar.gz |
Merge branch 'develop' into 'feature/staff-discovery-api'
# Conflicts:
# lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
Diffstat (limited to 'lib/pleroma/web/nodeinfo/nodeinfo_controller.ex')
-rw-r--r-- | lib/pleroma/web/nodeinfo/nodeinfo_controller.ex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex b/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex index d95addb0b..67cef004a 100644 --- a/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex +++ b/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex @@ -23,6 +23,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() staff_accounts = @@ -59,7 +61,9 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do timeout: Keyword.get(suggestions, :timeout, 5000), web: Keyword.get(suggestions, :web, "") }, - staffAccounts: staff_accounts + staffAccounts: staff_accounts, + chat: Keyword.get(chat, :enabled), + gopher: Keyword.get(gopher, :enabled) } } |