Skip to content

Commit

Permalink
Fixes for setup
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Apr 16, 2024
1 parent cacecbc commit fb28d9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.8.48
5.8.49
8 changes: 0 additions & 8 deletions app/Http/Requests/Setup/StoreSetupRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ public function rules()
/*System*/
'url' => 'required',
/*Mail driver*/
'mail_driver' => 'required',
'encryption' => 'required_unless:mail_driver,log',
'mail_host' => 'required_unless:mail_driver,log',
'mail_username' => 'required_unless:mail_driver,log',
'mail_name' => 'required_unless:mail_driver,log',
'mail_address' => 'required_unless:mail_driver,log',
'mail_password' => 'required_unless:mail_driver,log',
/*user registration*/
'privacy_policy' => 'required',
'terms_of_service' => 'required',
'first_name' => 'required',
Expand Down
4 changes: 2 additions & 2 deletions app/PaymentDrivers/PayPalRestPaymentDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ public function processPaymentView($data)
$data['currency'] = $this->client->currency()->code;


return render('gateways.paypal.ppcp.card', $data);
// return render('gateways.paypal.ppcp.card', $data);

// return render('gateways.paypal.pay', $data);
return render('gateways.paypal.pay', $data);

}

Expand Down
4 changes: 2 additions & 2 deletions config/ninja.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.8.48'),
'app_tag' => env('APP_TAG', '5.8.48'),
'app_version' => env('APP_VERSION', '5.8.49'),
'app_tag' => env('APP_TAG', '5.8.49'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),
Expand Down

0 comments on commit fb28d9a

Please sign in to comment.