I'm trying to implement this ActiveAdmin code so I can create a new Admin User. However, when I submit the form to create the Admin User, I get an error:
167 - Started POST "/admin/admin_users" for 10.253.207.217 at 2012-08-13 20:34:26 +0000
167 - ActionView::Template::Error (undefined method `host_with_port' for nil:NilClass):
93 - 2:
197 - 3: <p>Someone has requested a link to change your password, and you can do this through the link below.</p>
93 - 4:
222 - 5: <p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
93 - 6:
153 - 7: <p>If you didn't request this, please ignore this email.</p>
180 - 8: <p>Your password won't change until you access the link above and create a new one.</p>
147 - app/models/admin_user.rb:11:in `block in <class:AdminUser>'
195 - POST www.foobar.com/admin/admin_users dyno=web.1 queue=0 wait=0ms service=304ms status=500 bytes=4904
Email sends ok from the app (from SendGrid) with my settings in Mail.rb as:
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => '587',
:authentication => :plain,
:user_name => ENV['SENDGRID_USERNAME'],
:password => ENV['SENDGRID_PASSWORD'],
:domain => 'heroku.com'
}
ActionMailer::Base.delivery_method = :smtp
Can someone please help me figure out what is going on? I saw this Stack Overflow question which is the same as mine, but the only solution someone submitted, doesn't help me.