Skip to content

Commit

Permalink
fix in fase di lettura dei permessi
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Sep 15, 2024
1 parent f40ba1b commit ea2d3da
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions code/app/Helpers/Permissions.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,21 @@ function allPermissions()
],
];

$gas = currentAbsoluteGas();
if ($gas->multigas) {
$ret['App\Gas']['gas.multi'] = _i('Amministrare la modalità Multi-GAS su questa istanza');
/*
In fase di prima installazione con Composer, per vie traverse si
transita da questa funzione (durante l'inizializzazione dei Service
Provider). Ma in tale sede la connessione al DB ragionevolmente non è
ancora stata configurata, pertanto non è possibile attingere ad
eventuali configurazioni dinamiche
*/
try {
$gas = currentAbsoluteGas();
if ($gas->multigas) {
$ret['App\Gas']['gas.multi'] = _i('Amministrare la modalità Multi-GAS su questa istanza');
}
}
catch(\Exception $e) {
// dummy
}

return $ret;
Expand Down
2 changes: 1 addition & 1 deletion code/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"brianium/paratest": "^7.2",
"fakerphp/faker": "^1.23",
"laracraft-tech/laravel-xhprof": "^1.0",
"larastan/larastan": "^2.9",
"laravel/sail": "^1.23",
"mockery/mockery": "~1.0",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.3.0",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
Expand Down

0 comments on commit ea2d3da

Please sign in to comment.