Reduce error-throws :-)
This commit is contained in:
parent
a81708091f
commit
d524f55e3e
|
@ -54,11 +54,7 @@ class Show extends BaseModule
|
||||||
throw new HTTPException\UnauthorizedException($this->t('Permission denied.'));
|
throw new HTTPException\UnauthorizedException($this->t('Permission denied.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($this->parameters['id'])) {
|
$event = Event::getByIdAndUid($this->session->getLocalUserId(), (int)$this->parameters['id'] ?? 0, $this->parameters['nickname'] ?? '');
|
||||||
throw new HTTPException\BadRequestException($this->t('Invalid Request'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$event = Event::getByIdAndUid($this->session->getLocalUserId(), (int)$this->parameters['id'], $this->parameters['nickname'] ?? '');
|
|
||||||
|
|
||||||
if (empty($event)) {
|
if (empty($event)) {
|
||||||
throw new HTTPException\NotFoundException($this->t('Event not found.'));
|
throw new HTTPException\NotFoundException($this->t('Event not found.'));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user