27b5b1a524c99c25c42e89df9bcc67b384445569
[akkoma] / 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 @doc "GET /api/v1/instance"
9 def show(conn, _params) do
10 render(conn, "show.json")
11 end
12
13 @doc "GET /api/v1/instance/peers"
14 def peers(conn, _params) do
15 json(conn, Pleroma.Stats.get_peers())
16 end
17 end