Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
[akkoma] / lib / pleroma / web / mastodon_api / controllers / instance_controller.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.InstanceController do
6 use Pleroma.Web, :controller
7
8 plug(
9 :skip_plug,
10 [Pleroma.Plugs.OAuthScopesPlug, Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug]
11 when action in [:show, :peers]
12 )
13
14 @doc "GET /api/v1/instance"
15 def show(conn, _params) do
16 render(conn, "show.json")
17 end
18
19 @doc "GET /api/v1/instance/peers"
20 def peers(conn, _params) do
21 json(conn, Pleroma.Stats.get_peers())
22 end
23 end