From d899dc6f1e0826d705a50db07823fea34bab7511 Mon Sep 17 00:00:00 2001 From: jcwimer Date: Mon, 4 Jan 2016 17:37:11 +0000 Subject: [PATCH] Fixing default address --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index 14455e4..0d15f74 100644 --- a/config/application.rb +++ b/config/application.rb @@ -32,7 +32,7 @@ module Wrestling config.action_mailer.delivery_method = :postmark config.action_mailer.postmark_settings = { :api_token => ENV['POSTMARK_API_TOKEN'] } #Devise needs origin of email - config.action_mailer.default_url_options = { :host => 'wrestlingapp.heroku.com' } + config.action_mailer.default_url_options = { :host => 'wrestlingapp.herokuapp.com' } end