Fix for ticket 2756 - Calls to OAuth endpoints are redirected to the
login page when a site is in private mode
This commit is contained in:
parent
834c09d5a3
commit
77609e0c4a
|
@ -270,7 +270,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
||||||
$this->elementStart('form', array('method' => 'post',
|
$this->elementStart('form', array('method' => 'post',
|
||||||
'id' => 'form_apioauthauthorize',
|
'id' => 'form_apioauthauthorize',
|
||||||
'class' => 'form_settings',
|
'class' => 'form_settings',
|
||||||
'action' => common_local_url('apioauthauthorize')));
|
'action' => common_local_url('ApiOauthAuthorize')));
|
||||||
$this->elementStart('fieldset');
|
$this->elementStart('fieldset');
|
||||||
$this->element('legend', array('id' => 'apioauthauthorize_allowdeny'),
|
$this->element('legend', array('id' => 'apioauthauthorize_allowdeny'),
|
||||||
_('Allow or deny access'));
|
_('Allow or deny access'));
|
||||||
|
|
|
@ -488,19 +488,19 @@ class Router
|
||||||
// Social graph
|
// Social graph
|
||||||
|
|
||||||
$m->connect('api/friends/ids/:id.:format',
|
$m->connect('api/friends/ids/:id.:format',
|
||||||
array('action' => 'apiuserfriends',
|
array('action' => 'ApiUserFriends',
|
||||||
'ids_only' => true));
|
'ids_only' => true));
|
||||||
|
|
||||||
$m->connect('api/followers/ids/:id.:format',
|
$m->connect('api/followers/ids/:id.:format',
|
||||||
array('action' => 'apiuserfollowers',
|
array('action' => 'ApiUserFollowers',
|
||||||
'ids_only' => true));
|
'ids_only' => true));
|
||||||
|
|
||||||
$m->connect('api/friends/ids.:format',
|
$m->connect('api/friends/ids.:format',
|
||||||
array('action' => 'apiuserfriends',
|
array('action' => 'ApiUserFriends',
|
||||||
'ids_only' => true));
|
'ids_only' => true));
|
||||||
|
|
||||||
$m->connect('api/followers/ids.:format',
|
$m->connect('api/followers/ids.:format',
|
||||||
array('action' => 'apiuserfollowers',
|
array('action' => 'ApiUserFollowers',
|
||||||
'ids_only' => true));
|
'ids_only' => true));
|
||||||
|
|
||||||
// account
|
// account
|
||||||
|
@ -672,13 +672,13 @@ class Router
|
||||||
$m->connect('api/trends.json', array('action' => 'ApiTrends'));
|
$m->connect('api/trends.json', array('action' => 'ApiTrends'));
|
||||||
|
|
||||||
$m->connect('api/oauth/request_token',
|
$m->connect('api/oauth/request_token',
|
||||||
array('action' => 'apioauthrequesttoken'));
|
array('action' => 'ApiOauthRequestToken'));
|
||||||
|
|
||||||
$m->connect('api/oauth/access_token',
|
$m->connect('api/oauth/access_token',
|
||||||
array('action' => 'apioauthaccesstoken'));
|
array('action' => 'ApiOauthAccessToken'));
|
||||||
|
|
||||||
$m->connect('api/oauth/authorize',
|
$m->connect('api/oauth/authorize',
|
||||||
array('action' => 'apioauthauthorize'));
|
array('action' => 'ApiOauthAuthorize'));
|
||||||
|
|
||||||
// Admin
|
// Admin
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user