Manuel Bustillo
f414acb2d5
Some checks failed
Run unit tests / rubocop (push) Failing after 1m10s
Run unit tests / unit_tests (push) Failing after 1m16s
Run unit tests / copyright_notice (push) Successful in 1m16s
Run unit tests / check-licenses (push) Successful in 1m36s
Run unit tests / build-static-assets (push) Has been skipped
We want to make sure that: 1. Migrations are reversible 2. Reapplying migrations added to a PR leads to the same schema.rb Reviewed-on: #220 Co-authored-by: Manuel Bustillo <bustikiller@bustikiller.com> Co-committed-by: Manuel Bustillo <bustikiller@bustikiller.com>
10 lines
379 B
Plaintext
10 lines
379 B
Plaintext
<%# Copyright (C) 2024-2025 LibreWeddingPlanner contributors %>
|
|
|
|
<p>Hello <%= @email %>!</p>
|
|
|
|
<% if @resource.try(:unconfirmed_email?) %>
|
|
<p>We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.</p>
|
|
<% else %>
|
|
<p>We're contacting you to notify you that your email has been changed to <%= @resource.email %>.</p>
|
|
<% end %>
|