mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
15 lines
295 B
Ruby
15 lines
295 B
Ruby
module Devise
|
|
class Notifier < ::ActionMailer::Base
|
|
|
|
def confirmation_instructions(record)
|
|
# TODO: configure email
|
|
end
|
|
|
|
def reset_password_instructions(record)
|
|
# TODO
|
|
end
|
|
end
|
|
end
|
|
|
|
Devise::Notifier.template_root = File.join(File.dirname(__FILE__), '..', 'views')
|
|
|