diff --git a/app/views/mailers/notifications/low_sms_credits.html.erb b/app/views/mailers/notifications/low_sms_credits.html.erb index 4814cbc30f3e1c3d18113b1de59569b1386f1c3c..3bf50e278f95e33042e45ecbf5ed5679a0cc77b7 100644 --- a/app/views/mailers/notifications/low_sms_credits.html.erb +++ b/app/views/mailers/notifications/low_sms_credits.html.erb @@ -1,3 +1,3 @@ <p><%= t('mailers.notifications.low_sms_credits.body_1_html', credits: @credits) %></p> -<p><%= t('mailers.notifications.low_sms_credits.body_2_html', link: 'https://app.sendinblue.com/billing/addon/customize/sms') %></p> +<p><%= t('mailers.notifications.low_sms_credits.body_2_html', link: 'https://app.brevo.com/billing/account/customize/message-credits') %></p> <p><%= t('mailers.yours') %></p> \ No newline at end of file diff --git a/config/locales/en.yml b/config/locales/en.yml index 231cd80d17930221cf23cc5e275c3f2853e30440..95e5cba299e941df87be563e3bdcb26c767859f0 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -284,7 +284,7 @@ en: website_invalid_access_token: subject: "Expired access token for \"%{website}\"" text_line_1_html: "The access token used for the website \"%{website}\" has expired and does not allow the website to be updated anymore." - text_line_2_html: "To solve this issue, please fill in a new access token by clicking <a href=\"%{url}\">here</a>." + text_line_2_html: "To solve this issue, please fill in a new access token by clicking <a href=\"%{url}\" target=\"_blank\" style=\"color: #c72b43;\">here</a>." yours: Yours. menu: admin: Admin diff --git a/config/locales/fr.yml b/config/locales/fr.yml index e8d5a2e1f28bfe352a97feba2362a9d142d139cc..a9947df5cd5334f2bd65395da96ec553cb0c4e61 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -284,7 +284,7 @@ fr: website_invalid_access_token: subject: Jeton d'accès expiré pour « %{website} » text_line_1_html: Le jeton d'accès utilisé pour le site « %{website} » a expiré et ne permet plus la mise à jour du site. - text_line_2_html: "Pour résoudre ce problème, veuillez renseigner un nouveau jeton d'accès en cliquant <a href=\"%{url}\">ici</a>." + text_line_2_html: "Pour résoudre ce problème, veuillez renseigner un nouveau jeton d'accès en cliquant <a href=\"%{url}\" target=\"_blank\" style=\"color: #c72b43;\">ici</a>." yours: Cordialement. menu: admin: Admin diff --git a/db/migrate/20231013090313_change_imports_user_nil.rb b/db/migrate/20231013090313_change_imports_user_nil.rb index 495d4d27b13161bab361a9f8a563174f4ad2b036..00404e4079ab0eca3cad3e48bbecc9a808d9e3cc 100644 --- a/db/migrate/20231013090313_change_imports_user_nil.rb +++ b/db/migrate/20231013090313_change_imports_user_nil.rb @@ -1,5 +1,5 @@ class ChangeImportsUserNil < ActiveRecord::Migration[7.0] def change - change_column :imports, :user_id, :uuid, null: true + change_column_null :imports, :user_id, true end end