1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

Merge pull request #7436 from turbo124/v5-develop

Cayman island dollar translation
This commit is contained in:
David Bomba 2022-05-15 15:18:23 +10:00 committed by GitHub
commit 431b2b84d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,7 @@ namespace App\Http\Controllers;
use App\Exceptions\FilePermissionsFailure;
use App\Models\Client;
use App\Utils\Ninja;
use App\Utils\Traits\AppSetup;
use App\Utils\Traits\ClientGroupSettingsSaver;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Support\Facades\Artisan;
@ -23,6 +24,7 @@ class SelfUpdateController extends BaseController
{
use DispatchesJobs;
use ClientGroupSettingsSaver;
use AppSetup;
private array $purge_file_list = [
'bootstrap/cache/compiled.php',
@ -161,6 +163,8 @@ class SelfUpdateController extends BaseController
Artisan::call('migrate', ['--force' => true]);
Artisan::call('optimize');
$this->buildCache(true);
nlog("Called Artisan commands");
return response()->json(['message' => 'Update completed'], 200);

View File

@ -34,6 +34,7 @@ class SubdomainController extends BaseController
'stage',
'html',
'lb',
'shopify',
];
public function __construct()

View File

@ -4582,6 +4582,7 @@ $LANG = array(
'auto_archive_cancelled_invoices_help' => 'Automatically archive invoices when they are cancelled.',
'alternate_pdf_viewer' => 'Alternate PDF Viewer',
'alternate_pdf_viewer_help' => 'Improve scrolling over the PDF preview [BETA]',
'currency_cayman_island_dollar' => 'Cayman Island Dollar',
);