Sha256: c72209d0ad7adcf3dcea097dc77cc3a6f6151d396c864fc5789cbed67e7252eb
Contents?: true
Size: 874 Bytes
Versions: 11
Compression:
Stored size: 874 Bytes
Contents
class PasswordResetsController < ApplicationController skip_before_action :authorization_required layout 'sessions' # Form for user to request a password reset def new @user = MinimalistAuthentication.configuration.user_model.new end # Send a password update link to users with a verified email def create if user user.regenerate_verification_token MinimalistAuthenticationMailer.update_password(user).deliver_now end # always display notice even if the user was not found to prevent leaking user emails redirect_to new_session_path, notice: "Password reset instructions were mailed to #{email_params[:email]}" end private def user @user ||= MinimalistAuthentication.configuration.user_model.active.email_verified.find_by(email_params) end def email_params params.require(:user).permit(:email) end end
Version data entries
11 entries across 11 versions & 1 rubygems