diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-08-24 14:15:16 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-08-24 14:15:16 +0200 |
commit | d1f86ad69f3e056d8da3f2691d4a53e31e5750f7 (patch) | |
tree | 0ffff3f1fb88707fa6a7c9c73e0ccf4dec3a6f1e /lib/pleroma/web/router.ex | |
parent | 8a97bebc5349dc4b388567ce8c7335a51c2427f3 (diff) | |
download | pleroma-d1f86ad69f3e056d8da3f2691d4a53e31e5750f7.tar.gz |
Basic masto-style info.
Diffstat (limited to 'lib/pleroma/web/router.ex')
-rw-r--r-- | lib/pleroma/web/router.ex | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 585642c33..d8e225f07 100644 --- 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 |