2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-07-28 22:30:10 +02:00
|
|
|
|
2017-11-19 02:22:07 +01:00
|
|
|
require Logger
|
2017-09-06 19:06:25 +02:00
|
|
|
|
2019-08-26 14:16:40 +02:00
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
2018-06-03 19:28:11 +02:00
|
|
|
|
2019-09-06 20:50:00 +02:00
|
|
|
# Stubs for unimplemented mastodon api
|
|
|
|
#
|
2017-09-09 19:19:13 +02:00
|
|
|
def empty_array(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty array")
|
|
|
|
json(conn, [])
|
|
|
|
end
|
2017-11-10 14:24:39 +01:00
|
|
|
|
2018-03-09 19:56:21 +01:00
|
|
|
def empty_object(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty object")
|
2018-08-14 04:27:28 +02:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
2017-09-06 19:06:25 +02:00
|
|
|
end
|