forked from GNUsocial/gnu-social
Run onEndSetApiUser also when already logged in!
This commit is contained in:
parent
d1ac9a4b44
commit
c7dd595984
@ -93,6 +93,8 @@ class ApiAuthAction extends ApiAction
|
|||||||
// TRANS: Authorization exception thrown when a user without API access tries to access the API.
|
// TRANS: Authorization exception thrown when a user without API access tries to access the API.
|
||||||
throw new AuthorizationException(_('Not allowed to use API.'));
|
throw new AuthorizationException(_('Not allowed to use API.'));
|
||||||
}
|
}
|
||||||
|
// Let's run this in the same way as if we've just authenticated the user (basic/oauth auth)
|
||||||
|
Event::handle('EndSetApiUser', array($this->auth_user));
|
||||||
$this->access = self::READ_WRITE;
|
$this->access = self::READ_WRITE;
|
||||||
} else {
|
} else {
|
||||||
$oauthReq = $this->getOAuthRequest();
|
$oauthReq = $this->getOAuthRequest();
|
||||||
|
Loading…
Reference in New Issue
Block a user