X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b61e4f77e86fd2535a88b0d3e5aec97809c8ec5e..0a8c26e596b40da6d428a5c91db0d815d13c89e4:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index b064ee1f0..aaad67d0e 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -1,17 +1,17 @@ class Notifier < ActionMailer::Base - def signup_confirm( user ) + def signup_confirm( user, token ) @recipients = user.email @from = 'abuse@openstreetmap.org' @subject = '[OpenStreetMap] Confirm your email address' - @body['url'] = "http://#{SERVER_URL}/user/confirm?confirm_string=#{user.token}" + @body['url'] = "http://#{SERVER_URL}/user/confirm?confirm_string=#{token.token}" end - def lost_password( user ) + def lost_password( user, token ) @recipients = user.email @from = 'abuse@openstreetmap.org' @subject = '[OpenStreetMap] Password reset request' - @body['url'] = "http://#{SERVER_URL}/user/reset_password?email=#{user.email}&token=#{user.token}" + @body['url'] = "http://#{SERVER_URL}/user/reset_password?email=#{user.email}&token=#{token.token}" end def reset_password(user, pass)