- Remove all Rodauth stuff and implement simple custom auth - Migrate from sprockets to propshaft, hack some bootstrap stuff
6 lines
151 B
Ruby
6 lines
151 B
Ruby
class PasswordsMailer < ApplicationMailer
|
|
def reset(user)
|
|
@user = user
|
|
mail subject: "Reset your password", to: user.email_address
|
|
end
|
|
end
|