Class: Spina::Admin::PasswordResetsController

Inherits:
AdminController
  • Object
show all
Defined in:
app/controllers/spina/admin/password_resets_controller.rb

Instance Method Summary collapse

Methods inherited from AdminController

#current_admin_path

Instance Method Details

#createObject



11
12
13
14
15
16
17
18
19
20
21
# File 'app/controllers/spina/admin/password_resets_controller.rb', line 11

def create
  user = User.find_by(email: params[:email])

  if user&.reset_password!
    UserMailer.forgot_password(user, request.user_agent).deliver_later
    redirect_to , 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

#editObject



23
24
25
# File 'app/controllers/spina/admin/password_resets_controller.rb', line 23

def edit
  @user = User.find_by!(password_reset_token: params[:id])
end

#newObject



8
9
# File 'app/controllers/spina/admin/password_resets_controller.rb', line 8

def new
end

#updateObject



27
28
29
30
31
32
33
34
35
36
37
# File 'app/controllers/spina/admin/password_resets_controller.rb', line 27

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 , flash: {success: t("spina.forgot_password.success")}
  else
    render :edit, status: :unprocessable_entity
  end
end