Sha256: 6130e41729c9dcd3aa607024126f4d77a8eba3c9a9d1b27916b4e2754297c88c
Contents?: true
Size: 1.29 KB
Versions: 13
Compression:
Stored size: 1.29 KB
Contents
module Spina module Admin class PasswordResetsController < AdminController layout "spina/admin/sessions" skip_before_action :authenticate def new end def create user = User.find_by(email: params[:email]) if user&.reset_passord! UserMailer.forgot_password(user, request.user_agent).deliver_later redirect_to admin_login_path, flash: {success: t('spina.forgot_password.instructions_sent')} else flash.now[:alert] = t('spina.forgot_password.unknown_user') render :new, status: :unprocessable_entity end end def edit @user = User.find_by!(password_reset_token: params[:id]) end def update @user = User.find_by(password_reset_token: params[:id]) if @user.password_reset_sent_at < 2.hours.ago redirect_to new_admin_password_reset_path, flash: {alert: t('spina.forgot_password.expired')} elsif @user.update(user_params) redirect_to admin_login_path, flash: {success: t('spina.forgot_password.success')} else render :edit, status: :unprocessable_entity end end private def user_params params.require(:user).permit(:password, :password_confirmation) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems