bullet_train-outgoing_webhooks 1.20.0 → 1.21.1
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 +4 -4
- data/app/views/account/webhooks/outgoing/deliveries/_index.html.erb +1 -1
- data/app/views/account/webhooks/outgoing/deliveries/show.html.erb +1 -1
- data/app/views/account/webhooks/outgoing/delivery_attempts/_index.html.erb +1 -1
- data/app/views/account/webhooks/outgoing/delivery_attempts/show.html.erb +1 -1
- data/app/views/account/webhooks/outgoing/endpoints/_index.html.erb +1 -1
- data/app/views/account/webhooks/outgoing/endpoints/show.html.erb +1 -1
- data/lib/bullet_train/outgoing_webhooks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f74e5d6779003ff4e7abb34b5a5ebdf0ceb0c4a8762b5074c1a5e0f38ad7a0e6
|
4
|
+
data.tar.gz: a321d6efdb40b00ad2d01e03ea1d9447718549d26a8759a64557e648de1cc15f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '085453e8df47ac23ea82d54acabc65a8c0af5d345cc0f95a698532e75afb145d1ccbc5f398b0c4ccdcad9a9ec645b0c6968256eec08567740c71b214752fb61a'
|
7
|
+
data.tar.gz: d73fbcabc10eb15626daa507da7ce3434e22b2a50580c4f5f02a5d5d864bb2be952bc4d0a74b6617fa68073b41ddcb9d30aeeb385315069df5c4d74aded405a0
|
@@ -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: {
|
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: {
|
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: {
|
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: {
|
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: {
|
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: {
|
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 %>
|