Pleroma/lib/pleroma/web/mastodon_api/controllers/mastodon_api_controller.ex

24 lines
614 B
Elixir
Raw Normal View History

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