lato 0.1.15 → 0.1.17
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab858e111115e6d96dccd40d65f12b249847b0c6ea90d82e9eaaf6027eb70c7e
|
4
|
+
data.tar.gz: ccfc3c5ffed16097f8d8e10bace117d42376ae56798f5370dc2e3cc1ed7c4e4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6efd8f148357ae917cf2469a7e59024904c7b3c0b2d1112dfaa3dba69f9a9818c183f1620225d9d39ff7a004df7c15106622fba2f9819c3c3282d5ce38a45fb
|
7
|
+
data.tar.gz: df91762636fc90ed103c2499992b659d810876f33ee202ecfcaee8fb55f999e8dba29a09c17d906af0d4493130cede3c42549227286c1ae73792c4c18d00fa23
|
@@ -7,9 +7,9 @@
|
|
7
7
|
Ti informiamo che è stato rilasciato un <b>aggiornamento della nostra privacy policy</b>.<br>
|
8
8
|
Per continuare a utilizzare <%= Lato.config.application_title %> è necessario prendere visione e accettare la nuova privacy policy.<br>
|
9
9
|
</p>
|
10
|
-
<%= form_with url: lato.account_update_accepted_privacy_policy_version_action_path, data: { turbo_frame: '_self' } do |form| %>
|
10
|
+
<%= form_with method: :patch, url: lato.account_update_accepted_privacy_policy_version_action_path, data: { turbo_frame: '_self' } do |form| %>
|
11
11
|
<%= lato_form_errors @session.user, class: %w[mb-3] %>
|
12
|
-
<%= lato_form_item_input_check form, :accepted_privacy_policy_version, "Dichiaro di aver letto e accettato la <a href=#{Lato.config.legal_privacy_policy_url} target=_blank>privacy policy</a>.", checked: false, value:
|
12
|
+
<%= lato_form_item_input_check form, :accepted_privacy_policy_version, "Dichiaro di aver letto e accettato la <a href=#{Lato.config.legal_privacy_policy_url} target=_blank>privacy policy</a>.", checked: false, value: Lato.config.legal_privacy_policy_version, required: true %>
|
13
13
|
|
14
14
|
<div class="mt-3">
|
15
15
|
<%= lato_form_submit form, 'Conferma' %>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
Ti informiamo che è stato rilasciato un <b>aggiornamento dei nostri termini e condizioni</b> di utilizzo.<br>
|
8
8
|
Per continuare a utilizzare <%= Lato.config.application_title %> è necessario prendere visione e accettare i nuovi termini.<br>
|
9
9
|
</p>
|
10
|
-
<%= form_with url: lato.account_update_accepted_terms_and_conditions_version_action_path, data: { turbo_frame: '_self' } do |form| %>
|
10
|
+
<%= form_with method: :patch, url: lato.account_update_accepted_terms_and_conditions_version_action_path, data: { turbo_frame: '_self' } do |form| %>
|
11
11
|
<%= lato_form_errors @session.user, class: %w[mb-3] %>
|
12
12
|
<%= lato_form_item_input_check form, :accepted_terms_and_conditions_version, "Dichiaro di aver letto e accettato i <a href=#{Lato.config.legal_terms_and_conditions_url} target=_blank>termini e condizioni</a> di utilizzo.", checked: false, value: Lato.config.legal_terms_and_conditions_version, required: true %>
|
13
13
|
|
data/lib/lato/version.rb
CHANGED