1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/models/notifier.rb
2009-10-09 07:36:12 -03:00

12 lines
261 B
Ruby

class Notifier < ::ActionMailer::Base
def confirmation_instructions(record)
# TODO: configure email
end
def reset_password_instructions(record)
# TODO
end
end
#Devise::Notifier.template_root = File.join(File.dirname(__FILE__), '..', 'views')