Add /statuses/mentions_timeline route

This commit is contained in:
dtluna 2017-04-21 00:29:08 +03:00
parent 27c53242a3
commit 7a018a8d3b
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ def user_fetcher(username) do
get "/statuses/home_timeline", TwitterAPI.Controller, :friends_timeline
get "/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline
get "/statuses/mentions", TwitterAPI.Controller, :mentions_timeline
get "/statuses/mentions_timeline", TwitterAPI.Controller, :mentions_timeline
post "/statuses/update", TwitterAPI.Controller, :status_update
post "/statuses/retweet/:id", TwitterAPI.Controller, :retweet