Nextcloud-App/lib/Controller/Errors.php
Ben 61ba02ccd9
Fix finding ticket by id with user
Add findTicket by id only.
2021-10-10 19:01:00 +02:00

20 lines
476 B
PHP

<?php
namespace OCA\UPschooling\Controller;
use Closure;
use OCA\UPschooling\Exceptions\TicketNotFoundException;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse;
trait Errors {
protected function handleNotFound(Closure $callback): DataResponse {
try {
return new DataResponse($callback());
} catch (TicketNotFoundException $e) {
$message = ['message' => $e->getMessage()];
return new DataResponse($message, Http::STATUS_NOT_FOUND);
}
}
}