Issue 11063: Fix check for current user
This commit is contained in:
parent
00f8b620dc
commit
799baeda10
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class BaseApi extends BaseModule
|
||||||
case Router::PUT:
|
case Router::PUT:
|
||||||
self::checkAllowedScope(self::SCOPE_WRITE);
|
self::checkAllowedScope(self::SCOPE_WRITE);
|
||||||
|
|
||||||
if (!$this->app->isLoggedIn()) {
|
if (!self::getCurrentUserID()) {
|
||||||
throw new HTTPException\ForbiddenException($this->t('Permission denied.'));
|
throw new HTTPException\ForbiddenException($this->t('Permission denied.'));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue