add statuses/retweeted_to_me to API

This commit is contained in:
Evan Prodromou
2009-12-12 16:15:23 -05:00
parent 698b28c95c
commit 1ec54d3433
4 changed files with 197 additions and 0 deletions

View File

@@ -323,6 +323,10 @@ class Router
array('action' => 'ApiTimelineRetweetedByMe',
'format' => '(xml|json|atom)'));
$m->connect('api/statuses/retweeted_to_me.:format',
array('action' => 'ApiTimelineRetweetedToMe',
'format' => '(xml|json|atom)'));
$m->connect('api/statuses/retweets_of_me.:format',
array('action' => 'ApiTimelineRetweetsOfMe',
'format' => '(xml|json|atom)'));