Add help/test resource
authordtluna <dtluna@openmailbox.org>
Mon, 10 Apr 2017 12:54:53 +0000 (15:54 +0300)
committerdtluna <dtluna@openmailbox.org>
Mon, 10 Apr 2017 12:54:53 +0000 (15:54 +0300)
lib/pleroma/web/router.ex
lib/pleroma/web/twitter_api/twitter_api_controller.ex

index 52030d684ac16d093977094286974f7bcd94dde8..e52a956577bf10123ee570143e7d98ba5ef85be1 100644 (file)
@@ -21,6 +21,7 @@ defmodule Pleroma.Web.Router do
 
   scope "/api", Pleroma.Web do
     pipe_through :api
+    get "/help/test", TwitterAPI.Controller, :help_test
     get "/statuses/public_timeline", TwitterAPI.Controller, :public_timeline
     get "/statuses/public_and_external_timeline", TwitterAPI.Controller, :public_timeline
     get "/statuses/show/:id", TwitterAPI.Controller, :fetch_status
index f2c893e96d3c5c08ef886471de614eb0a0de32c9..8163897e775b251514efdf5198dbd9cadd5a4aa5 100644 (file)
@@ -83,6 +83,10 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
     |> send_resp(200, response)
   end
 
+  def help_test(conn, _) do
+    conn |> json_reply(200, Poison.encode!("ok"))
+  end
+
   defp json_reply(conn, status, json) do
     conn
     |> put_resp_content_type("application/json")