diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-03-24 01:16:28 +0100 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-03-24 01:16:28 +0100 |
commit | e4de0ddc77bceb0bbaad6fd25b327c3af53f198c (patch) | |
tree | cdc3739209762f0a505ab31323b17767572d3973 /lib/pleroma/web/router.ex | |
parent | 866a2663d4093204317aba7ff87a6d93eaf805fd (diff) | |
download | pleroma-e4de0ddc77bceb0bbaad6fd25b327c3af53f198c.tar.gz |
Add single status fetching to TwAPI.
Diffstat (limited to 'lib/pleroma/web/router.ex')
-rw-r--r-- | lib/pleroma/web/router.ex | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index e7d0b9437..d9a3968a7 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -21,17 +21,18 @@ defmodule Pleroma.Web.Router do scope "/api", Pleroma.Web do pipe_through :api - get "/statuses/public_timeline.json", TwitterAPI.Controller, :public_timeline - get "/statuses/public_and_external_timeline.json", TwitterAPI.Controller, :public_timeline + 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 end scope "/api", Pleroma.Web do pipe_through :authenticated_api - post "/account/verify_credentials.json", TwitterAPI.Controller, :verify_credentials - post "/statuses/update.json", TwitterAPI.Controller, :status_update - get "/statuses/friends_timeline.json", TwitterAPI.Controller, :friends_timeline - post "/friendships/create.json", TwitterAPI.Controller, :follow - post "/friendships/destroy.json", TwitterAPI.Controller, :unfollow + post "/account/verify_credentials", TwitterAPI.Controller, :verify_credentials + post "/statuses/update", TwitterAPI.Controller, :status_update + get "/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline + post "/friendships/create", TwitterAPI.Controller, :follow + post "/friendships/destroy", TwitterAPI.Controller, :unfollow end end |