diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-06-08 19:21:07 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-06-08 19:21:07 +0300 |
commit | 604a83ae3efe21b231fb524203a883a062102546 (patch) | |
tree | 610d04900503ec700fe7307fb73fd90bb5865009 /lib/pleroma/web/admin_api/controllers/fallback_controller.ex | |
parent | 1be6b3056e97654612f377eaf3c8d80de6d8d77f (diff) | |
parent | d1924926585a477682b8fcc3176521dacb0766dd (diff) | |
download | pleroma-604a83ae3efe21b231fb524203a883a062102546.tar.gz |
merge develop
Diffstat (limited to 'lib/pleroma/web/admin_api/controllers/fallback_controller.ex')
-rw-r--r-- | lib/pleroma/web/admin_api/controllers/fallback_controller.ex | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/pleroma/web/admin_api/controllers/fallback_controller.ex b/lib/pleroma/web/admin_api/controllers/fallback_controller.ex new file mode 100644 index 000000000..82965936d --- /dev/null +++ b/lib/pleroma/web/admin_api/controllers/fallback_controller.ex @@ -0,0 +1,31 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Web.AdminAPI.FallbackController do + use Pleroma.Web, :controller + + def call(conn, {:error, :not_found}) do + conn + |> put_status(:not_found) + |> json(%{error: dgettext("errors", "Not found")}) + end + + def call(conn, {:error, reason}) do + conn + |> put_status(:bad_request) + |> json(%{error: reason}) + end + + def call(conn, {:param_cast, _}) do + conn + |> put_status(:bad_request) + |> json(dgettext("errors", "Invalid parameters")) + end + + def call(conn, _) do + conn + |> put_status(:internal_server_error) + |> json(%{error: dgettext("errors", "Something went wrong")}) + end +end |