feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
140 changed files with 658 additions and 6439 deletions
Showing only changes of commit 15ba23bf23 - Show all commits

View File

@ -155,10 +155,11 @@ class Toku extends Controller
$output = [ $output = [
'type' => $type, 'type' => $type,
'input' => $input, 'input' => $input,
'output' => [],
'success' => false 'success' => false
]; ];
try { try {
$tokuService->update($input, $type); $output['output'] = $tokuService->update($input, $type);
$output['success'] = true; $output['success'] = true;
} catch (Exception $exception) { } catch (Exception $exception) {
$this->logger->error($exception); $this->logger->error($exception);