Baremetrics BMPay breaks with CSP turned [sc-25011]

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-07-24 21:42:20 +01:00
parent 962ae5231d
commit 9b422e5c97
3 changed files with 0 additions and 24 deletions

View file

@ -44,12 +44,6 @@ return [
'secret' => env('STRIPE_SECRET'),
],
'baremetrics' => [
'enabled' => env('ENABLE_BMPAY', false),
'app_key' => env('BMPAY_PUBLIC_KEY', null),
'stripe_id' => env('BMPAY_STRIPE_ID', null),
],
'google' => [
'maps_api_key' => env('GOOGLE_MAPS_API'),
],

View file

@ -1136,8 +1136,5 @@ dir="{{ Helper::determineLanguageDirection() }}">
</script>
@endif
@include('partials.bpay')
</body>
</html>

View file

@ -1,15 +0,0 @@
@can('admin')
@if ((config('services.baremetrics.enabled')=='true') && (config('services.baremetrics.app_key')) && (config('services.baremetrics.stripe_id')))
<script>
!function(){if(window.barepay&&window.barepay.created)window.console&&console.error&&console.error("Barepay snippet included twice.");else{window.barepay={created:!0};var a=document.createElement("script");a.src="https://baremetrics-dunning.baremetrics.com/js/application.js",a.async=!0;var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b),
window.barepay.params = {
access_token_id: "{{ config('services.baremetrics.app_key') }}", // Your Recover API public key
customer_oid: "{{ config('services.baremetrics.stripe_id') }}" // Customer ID whose card you're looking to update
}
}}();
</script>
@else
@endif
@endcan