Forgot to commit the routes for the new actions
This commit is contained in:
parent
99d2999b5c
commit
eac388a3cb
@ -266,6 +266,10 @@ class Router
|
||||
|
||||
// statuses API
|
||||
|
||||
$m->connect('api/statuses/public_timeline.:format',
|
||||
array('action' => 'ApiPublicTimeline',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/friends_timeline.:format',
|
||||
array('action' => 'ApiFriendsTimeline',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
@ -275,18 +279,36 @@ class Router
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/user_timeline.:format',
|
||||
array('action' => 'ApiUserTimeline',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/user_timeline/:id.:format',
|
||||
array('action' => 'ApiUserTimeline',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/mentions.:format',
|
||||
array('action' => 'ApiMentions',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/mentions/:id.:format',
|
||||
array('action' => 'ApiMentions',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/home_timeline',
|
||||
array('action' => 'apifriendstimeline'));
|
||||
|
||||
$m->connect('api/statuses/:method',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(public_timeline|user_timeline|update|replies|mentions|show|friends|followers|featured)(\.(atom|rss|xml|json))?'));
|
||||
array('method' => '(update|replies|show|friends|followers|featured)(\.(atom|rss|xml|json))?'));
|
||||
|
||||
$m->connect('api/statuses/:method/:argument',
|
||||
array('action' => 'api',
|
||||
'apiaction' => 'statuses'),
|
||||
array('method' => '(user_timeline|replies|mentions|show|destroy|friends|followers)'));
|
||||
array('method' => '(replies|show|destroy|friends|followers)'));
|
||||
|
||||
// users
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user