logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: d1f86ad69f3e056d8da3f2691d4a53e31e5750f7
parent: 8a97bebc5349dc4b388567ce8c7335a51c2427f3
Author: Roger Braun <roger@rogerbraun.net>
Date:   Thu, 24 Aug 2017 14:15:16 +0200

Basic masto-style info.

Diffstat:

Mlib/pleroma/web/router.ex10++++++++++
Mlib/pleroma/web/twitter_api/controllers/util_controller.ex13+++++++++++++
2 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex @@ -27,6 +27,16 @@ defmodule Pleroma.Web.Router do plug :accepts, ["json", "xml"] end + pipeline :masto_config do + plug :accepts, ["json"] + end + + scope "/api/v1", Pleroma.Web do + pipe_through :masto_config + # TODO: Move this + get "/instance", TwitterAPI.UtilController, :masto_instance + end + scope "/api", Pleroma.Web do pipe_through :config diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex @@ -42,4 +42,17 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do _ -> json(conn, "Pleroma Dev") end end + + # TODO: Move this + def masto_instance(conn, _params) do + response = %{ + uri: Web.base_url, + title: Web.base_url, + description: "A Pleroma instance, an alternative fediverse server", + email: "example@example.org", + version: "dev" + } + + json(conn, response) + end end