|
1
|
class DeviseMailerPreview < ActionMailer::Preview |
|
2
|
def confirmation_instructions |
|
3
|
DeviseMailer.confirmation_instructions(User.first, 'faketoken', {}) |
|
4
|
end |
|
5
|
|
|
6
|
def reset_password_instructions |
|
7
|
DeviseMailer.reset_password_instructions(User.first, 'faketoken', {}) |
|
8
|
end |
|
9
|
end |