mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
22 lines
630 B
Elixir
22 lines
630 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.InstancesController do
|
|
use Pleroma.Web, :controller
|
|
|
|
alias Pleroma.Instances
|
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaInstancesOperation
|
|
|
|
def show(conn, _params) do
|
|
unreachable =
|
|
Instances.get_consistently_unreachable()
|
|
|> Map.new(fn {host, date} -> {host, to_string(date)} end)
|
|
|
|
json(conn, %{"unreachable" => unreachable})
|
|
end
|
|
end
|