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/twitter_api/controllers | |
parent | 8a97bebc5349dc4b388567ce8c7335a51c2427f3 (diff) | |
download | pleroma-d1f86ad69f3e056d8da3f2691d4a53e31e5750f7.tar.gz |
Basic masto-style info.
Diffstat (limited to 'lib/pleroma/web/twitter_api/controllers')
-rw-r--r-- | lib/pleroma/web/twitter_api/controllers/util_controller.ex | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex index 41881e742..904149a45 100644 --- 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 |