mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for stripe gateways
This commit is contained in:
parent
a2ef847f54
commit
c5bf766938
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
@ -35,6 +35,7 @@ jobs:
|
|||||||
php artisan key:generate
|
php artisan key:generate
|
||||||
php artisan optimize
|
php artisan optimize
|
||||||
php artisan storage:link
|
php artisan storage:link
|
||||||
|
php artisan livewire:publish
|
||||||
sudo php artisan cache:clear
|
sudo php artisan cache:clear
|
||||||
sudo find ./vendor/bin/ -type f -exec chmod +x {} \;
|
sudo find ./vendor/bin/ -type f -exec chmod +x {} \;
|
||||||
sudo find ./ -type d -exec chmod 755 {} \;
|
sudo find ./ -type d -exec chmod 755 {} \;
|
||||||
|
@ -40,6 +40,19 @@ class ReverseAppleDomainForHosted extends Migration
|
|||||||
$chf->symbol = 'CHF';
|
$chf->symbol = 'CHF';
|
||||||
$chf->save();
|
$chf->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(Ninja::isSelfHost())
|
||||||
|
{
|
||||||
|
|
||||||
|
$gateway = Gateway::find(20);
|
||||||
|
|
||||||
|
if($gateway)
|
||||||
|
{
|
||||||
|
$gateway->fields = '{"publishableKey":"","apiKey":"","appleDomainVerification":""}';
|
||||||
|
$gateway->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user