mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-07 23:17:25 +00:00
Upgraded to rails 8.0.2, moved from dalli to solid cache, moved from delayed_job to solid queue, and add solid cable. deploy/rails-dev-run.sh no longer needs to chmod. Fixed finished_at callback for matches. Migrated from Devise to built in rails auth. Added view tests for the bracket page testing that all bout numbers render for all matches in each bracket type.
This commit is contained in:
12
app/views/user_mailer/password_reset.html.erb
Normal file
12
app/views/user_mailer/password_reset.html.erb
Normal file
@@ -0,0 +1,12 @@
|
||||
<h1>Password reset</h1>
|
||||
|
||||
<p>To reset your password click the link below:</p>
|
||||
|
||||
<%= link_to "Reset password", edit_password_reset_url(@user.reset_token, email: @user.email) %>
|
||||
|
||||
<p>This link will expire in two hours.</p>
|
||||
|
||||
<p>
|
||||
If you did not request your password to be reset, please ignore this email and
|
||||
your password will stay as it is.
|
||||
</p>
|
||||
8
app/views/user_mailer/password_reset.text.erb
Normal file
8
app/views/user_mailer/password_reset.text.erb
Normal file
@@ -0,0 +1,8 @@
|
||||
To reset your password click the link below:
|
||||
|
||||
<%= edit_password_reset_url(@user.reset_token, email: @user.email) %>
|
||||
|
||||
This link will expire in two hours.
|
||||
|
||||
If you did not request your password to be reset, please ignore this email and
|
||||
your password will stay as it is.
|
||||
Reference in New Issue
Block a user