Fixes for stripe gateways
This commit is contained in:
parent
a2ef847f54
commit
c5bf766938
2 changed files with 14 additions and 0 deletions
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
|
@ -35,6 +35,7 @@ jobs:
|
|||
php artisan key:generate
|
||||
php artisan optimize
|
||||
php artisan storage:link
|
||||
php artisan livewire:publish
|
||||
sudo php artisan cache:clear
|
||||
sudo find ./vendor/bin/ -type f -exec chmod +x {} \;
|
||||
sudo find ./ -type d -exec chmod 755 {} \;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,19 @@ class ReverseAppleDomainForHosted extends Migration
|
|||
$chf->symbol = 'CHF';
|
||||
$chf->save();
|
||||
}
|
||||
|
||||
if(Ninja::isSelfHost())
|
||||
{
|
||||
|
||||
$gateway = Gateway::find(20);
|
||||
|
||||
if($gateway)
|
||||
{
|
||||
$gateway->fields = '{"publishableKey":"","apiKey":"","appleDomainVerification":""}';
|
||||
$gateway->save();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue