1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-29 20:57:11 +02:00

Merge pull request #5514 from turbo124/v5-stable

v5.1.53
This commit is contained in:
David Bomba 2021-04-23 07:22:50 +10:00 committed by GitHub
commit 969c08ed67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
5.1.52 5.1.53

View File

@ -14,8 +14,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true), 'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', ''), 'app_domain' => env('APP_DOMAIN', ''),
'app_version' => '5.1.52', 'app_version' => '5.1.53',
'app_tag' => '5.1.52-release', 'app_tag' => '5.1.53-release',
'minimum_client_version' => '5.0.16', 'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1', 'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false), 'api_secret' => env('API_SECRET', false),
@ -39,7 +39,7 @@ return [
'sentry_dsn' => env('SENTRY_LARAVEL_DSN', 'https://9b4e15e575214354a7d666489783904a@sentry.invoicing.co/6'), 'sentry_dsn' => env('SENTRY_LARAVEL_DSN', 'https://9b4e15e575214354a7d666489783904a@sentry.invoicing.co/6'),
'environment' => env('NINJA_ENVIRONMENT', 'selfhost'), // 'hosted', 'development', 'selfhost', 'reseller' 'environment' => env('NINJA_ENVIRONMENT', 'selfhost'), // 'hosted', 'development', 'selfhost', 'reseller'
'preconfigured_install' => env('PRECONFIGURED_INSTALL',false), 'preconfigured_install' => env('PRECONFIGURED_INSTALL',false),
'update_secret' => env('UPDATE_SECRET', false), 'update_secret' => env('UPDATE_SECRET', ''),
// Settings used by invoiceninja.com // Settings used by invoiceninja.com
'terms_of_service_url' => [ 'terms_of_service_url' => [

View File

@ -41,7 +41,7 @@ class AddPropertyToCheckoutGatewayConfig extends Migration
$checkout->save(); $checkout->save();
}); });
$this->buildCache(true); // $this->buildCache(true);
} }
/** /**