Sfoglia il codice sorgente

nodeinfo: add staffAccounts field to metadata

tags/v0.9.9
William Pitcock 5 anni fa
parent
commit
9a21ff5f61
1 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. +8
    -1
      lib/pleroma/web/nodeinfo/nodeinfo_controller.ex

+ 8
- 1
lib/pleroma/web/nodeinfo/nodeinfo_controller.ex Vedi File

@@ -3,6 +3,7 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do

alias Pleroma.Stats
alias Pleroma.Web
alias Pleroma.{User, Repo}

def schemas(conn, _params) do
response = %{
@@ -24,6 +25,11 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
suggestions = Application.get_env(:pleroma, :suggestions)
stats = Stats.get_stats()

staff_accounts =
User.moderator_user_query()
|> Repo.all()
|> Enum.map(fn u -> u.ap_id end)

response = %{
version: "2.0",
software: %{
@@ -52,7 +58,8 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
thirdPartyEngine: Keyword.get(suggestions, :third_party_engine, ""),
timeout: Keyword.get(suggestions, :timeout, 5000),
web: Keyword.get(suggestions, :web, "")
}
},
staffAccounts: staff_accounts
}
}



Loading…
Annulla
Salva