bullet_train-outgoing_webhooks 1.20.0 → 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: 1701fb42331001c360f9df48b6fa65cda92b5dbd956670a7abd143e608da3513
4
- data.tar.gz: 6a06b513509d38029b1c469ef017c4ca304f55e37a0de31843be34b7f054252d
3
+ metadata.gz: 2e4fe5fbb1fb480077087b0f0e0ff6626c6f67122fc06c522f056ba41d467b80
4
+ data.tar.gz: 8d3eab6421891ead0d4acfa0874a6aad21be5d56392a33bc717845761e700ef8
5
5
  SHA512:
6
- metadata.gz: b8ca2f22546bd5c1488347b18ba2019b952d8853d897accccaa7d79724fa1a2688f967c5a6216e55d0662332a2a57dfdd31a9b9075e89cd1b127cdad40c631e9
7
- data.tar.gz: c19e2170b7b07bdb09151f6be06e833788e7a4f41ea1fb62e121b60a28dfd4767838fca0d315315aa73b095490b4684da7156fa61b0811f536a4696ddc698daf
6
+ metadata.gz: 34a393b5b6b43e8d43d99281ab5b836afaf0a544ae3c213e80273eda6dfcdabaad500824de7e042f6f1ab45061b2266bfa23be1686e24a7cbbbf8abe836af012
7
+ data.tar.gz: b77c88c6ed00b045047a10ad0b971d5aa4a5e7173e06af00e0c5a903117ffb91c6d1a305e0787dbb0d502829336537dd5f010ae02f53c795eac7bd23307574fc
@@ -43,7 +43,7 @@
43
43
  <%= link_to t('.buttons.shorthand.edit'), [:edit, :account, delivery], class: 'button-secondary button-smaller' %>
44
44
  <% end %>
45
45
  <% if can? :destroy, delivery %>
46
- <%= button_to t('.buttons.shorthand.destroy'), [:account, delivery], method: :delete, data: { confirm: t('.buttons.confirmations.destroy', model_locales(delivery)) }, class: 'button-secondary button-smaller' %>
46
+ <%= button_to t('.buttons.shorthand.destroy'), [:account, delivery], method: :delete, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(delivery)) }, class: 'button-secondary button-smaller' %>
47
47
  <% end %>
48
48
  <% end %>
49
49
  </td>
@@ -26,7 +26,7 @@
26
26
 
27
27
  <% box.actions do %>
28
28
  <%= link_to t('.buttons.edit'), [:edit, :account, @delivery], class: first_button_primary if can? :edit, @delivery %>
29
- <%= button_to t('.buttons.destroy'), [:account, @delivery], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@delivery)) } if can? :destroy, @delivery %>
29
+ <%= button_to t('.buttons.destroy'), [:account, @delivery], method: :delete, class: first_button_primary, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(@delivery)) } if can? :destroy, @delivery %>
30
30
  <%= link_to t('global.buttons.back'), [:account, @endpoint, :deliveries], class: first_button_primary %>
31
31
  <% end %>
32
32
  <% end %>
@@ -39,7 +39,7 @@
39
39
  <%= link_to t('.buttons.shorthand.edit'), [:edit, :account, delivery_attempt], class: 'button-secondary button-smaller' %>
40
40
  <% end %>
41
41
  <% if can? :destroy, delivery_attempt %>
42
- <%= button_to t('.buttons.shorthand.destroy'), [:account, delivery_attempt], method: :delete, data: { confirm: t('.buttons.confirmations.destroy', model_locales(delivery_attempt)) }, class: 'button-secondary button-smaller' %>
42
+ <%= button_to t('.buttons.shorthand.destroy'), [:account, delivery_attempt], method: :delete, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(delivery_attempt)) }, class: 'button-secondary button-smaller' %>
43
43
  <% end %>
44
44
  <% end %>
45
45
  </td>
@@ -22,7 +22,7 @@
22
22
 
23
23
  <% box.actions do %>
24
24
  <%= link_to t('.buttons.edit'), [:edit, :account, @delivery_attempt], class: first_button_primary if can? :edit, @delivery_attempt %>
25
- <%= button_to t('.buttons.destroy'), [:account, @delivery_attempt], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@delivery_attempt)) } if can? :destroy, @delivery_attempt %>
25
+ <%= button_to t('.buttons.destroy'), [:account, @delivery_attempt], method: :delete, class: first_button_primary, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(@delivery_attempt)) } if can? :destroy, @delivery_attempt %>
26
26
  <%= link_to t('global.buttons.back'), [:account, @delivery, :delivery_attempts], class: first_button_primary %>
27
27
  <% end %>
28
28
  <% end %>
@@ -32,7 +32,7 @@
32
32
  <%= link_to t('.buttons.shorthand.edit'), [:edit, :account, endpoint], class: 'button-secondary button-smaller' %>
33
33
  <% end %>
34
34
  <% if can? :destroy, endpoint %>
35
- <%= button_to t('.buttons.shorthand.destroy'), [:account, endpoint], method: :delete, data: { confirm: t('.buttons.confirmations.destroy', model_locales(endpoint)) }, class: 'button-secondary button-smaller' %>
35
+ <%= button_to t('.buttons.shorthand.destroy'), [:account, endpoint], method: :delete, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(endpoint)) }, class: 'button-secondary button-smaller' %>
36
36
  <% end %>
37
37
  <% end %>
38
38
  </td>
@@ -34,7 +34,7 @@
34
34
 
35
35
  <% box.actions do %>
36
36
  <%= link_to t('.buttons.edit'), [:edit, :account, @endpoint], class: first_button_primary if can? :edit, @endpoint %>
37
- <%= button_to t('.buttons.destroy'), [:account, @endpoint], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@endpoint)) } if can? :destroy, @endpoint %>
37
+ <%= button_to t('.buttons.destroy'), [:account, @endpoint], method: :delete, class: first_button_primary, data: { turbo_confirm: t('.buttons.confirmations.destroy', model_locales(@endpoint)) } if can? :destroy, @endpoint %>
38
38
  <%= link_to t('global.buttons.back'), [:account, @parent, :webhooks_outgoing_endpoints], class: first_button_primary %>
39
39
  <% end %>
40
40
  <% end %>
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module OutgoingWebhooks
3
- VERSION = "1.20.0"
3
+ VERSION = "1.21.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-outgoing_webhooks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver