bullet_train-integrations-stripe 1.19.2 → 1.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: acf5cc997f28f0c2907124cc19ffe88bed57691efbd84024475bfc16de1a77a1
4
- data.tar.gz: be56eb081036b656012e9d03df0c868b3889e6fc371094f0d0661170c0ed6276
3
+ metadata.gz: 38e9fbcc337da1e11f67819a72be198d909352a8617bfc9b953cabc779e291c4
4
+ data.tar.gz: 85dfe7726a30e2835cd49710bc99809bfd0cbfa9d0e14058e9ae6db621c86377
5
5
  SHA512:
6
- metadata.gz: c6754ba6223ff6bfd31cfcf918c1f14c597e6d9d2c14f6ee6f924f07c3221943d153b8ee85930c7f482dcdb12b08c873c9696a06159d095dfc3f3ea26d51a2ac
7
- data.tar.gz: 35306019481b02b84268376b91f0130ed6b632f4b1226b476ee63bc34a7574d7ee326e65f5ba6244d81a0d0e481d80ee6488ec5f94f87b8cb8cf484dca2ffeab
6
+ metadata.gz: d131db857e8e9593198e6e0c0f4b040273325aa913aba51b7a6c13aea73b83ba601a3c77759dfa6bf782037e2dd1e4777894a122432aa60c06acdfd2fc8335de
7
+ data.tar.gz: aa3bf7bb329c790d0a7019dc7d331a62bd8106eb70a62d4e7d83cdfbd7cf6062b2defada0f8542a7776d9213eef224caed0c80c8d354198928420b491135bf63
@@ -22,7 +22,7 @@
22
22
  <% end %>
23
23
 
24
24
  <% if can? :destroy, stripe_installation %>
25
- <%= link_to [:account, stripe_installation, return_to: request.path], method: :delete, data: { confirm: t('.buttons.confirmations.destroy_from_user', team_name: stripe_installation.team.label_string) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline text-lg' do %>
25
+ <%= link_to [:account, stripe_installation, return_to: request.path], data: { turbo_method: :delete, turbo_confirm: t('.buttons.confirmations.destroy_from_user', team_name: stripe_installation.team.label_string) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline text-lg' do %>
26
26
  <i class="ti ti-close"></i>
27
27
  <% end %>
28
28
  <% end %>
@@ -19,7 +19,7 @@
19
19
  </div>
20
20
  <div class="flex-0 min-w-0 space-x-2 text-lg">
21
21
  <% if can? :destroy, stripe_installation %>
22
- <%= link_to [:account, stripe_installation, return_to: request.path], method: :delete, data: { confirm: t('.buttons.confirmations.destroy_from_user', team_name: stripe_installation.team.label_string) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline' do %>
22
+ <%= link_to [:account, stripe_installation, return_to: request.path], data: { turbo_method: :delete, turbo_confirm: t('.buttons.confirmations.destroy_from_user', team_name: stripe_installation.team.label_string) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline' do %>
23
23
  <i class="ti ti-close"></i>
24
24
  <% end %>
25
25
  <% end %>
@@ -17,7 +17,7 @@
17
17
 
18
18
  <% box.actions do %>
19
19
  <%= link_to t('.buttons.edit'), [:edit, :account, @stripe_installation], class: first_button_primary if can? :edit, @stripe_installation %>
20
- <%= button_to t('.buttons.destroy'), [:account, @stripe_installation], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@stripe_installation)) } if can? :destroy, @stripe_installation %>
20
+ <%= button_to t('.buttons.destroy'), [:account, @stripe_installation], method: :delete, class: first_button_primary, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(@stripe_installation)) } if can? :destroy, @stripe_installation %>
21
21
  <%= link_to t('global.buttons.back'), [:account, @team, :integrations_stripe_installations], class: first_button_primary %>
22
22
  <% end %>
23
23
  <% end %>
@@ -21,7 +21,7 @@
21
21
  </div>
22
22
  <div class="flex-0 min-w-0 space-x-2 text-lg">
23
23
  <% if can? :destroy, stripe_account %>
24
- <%= link_to [:account, stripe_account], method: :delete, data: { confirm: t('.buttons.confirmations.destroy', model_locales(stripe_account)) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline' do %>
24
+ <%= link_to [:account, stripe_account], data: { turbo_method: :delete, turbo_confirm: t('.buttons.confirmations.destroy', model_locales(stripe_account)) }, class: 'inline-block text-slate-300 hover:text-slate-400 hover:no-underline' do %>
25
25
  <i class="ti ti-close"></i>
26
26
  <% end %>
27
27
  <% end %>
@@ -5,7 +5,7 @@
5
5
  <% box.t :description, title: '.header' %>
6
6
  <% box.actions do %>
7
7
  <%= link_to t('.buttons.edit'), [:edit, :account, @stripe_account], class: first_button_primary if can? :edit, @stripe_account %>
8
- <%= button_to t('.buttons.destroy'), [:account, @stripe_account], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@stripe_account)) } if can? :destroy, @stripe_account %>
8
+ <%= button_to t('.buttons.destroy'), [:account, @stripe_account], method: :delete, class: first_button_primary, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(@stripe_account)) } if can? :destroy, @stripe_account %>
9
9
  <%= link_to t('global.buttons.back'), [:account, @user, :oauth_stripe_accounts], class: first_button_primary %>
10
10
  <% end %>
11
11
  <% end %>
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Integrations
3
3
  module Stripe
4
- VERSION = "1.19.2"
4
+ VERSION = "1.21.0"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-integrations-stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.2
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-25 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  - !ruby/object:Gem::Version
171
171
  version: '0'
172
172
  requirements: []
173
- rubygems_version: 3.6.2
173
+ rubygems_version: 3.6.7
174
174
  specification_version: 4
175
175
  summary: Example Stripe platform integration for Bullet Train applications.
176
176
  test_files: []