2017-04-23 02:43:42 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ConfirmationsController < BaseController
|
2017-11-11 19:23:33 +00:00
|
|
|
before_action :set_user
|
2024-01-25 15:13:41 +00:00
|
|
|
before_action :redirect_confirmed_user, only: [:resend], if: :user_confirmed?
|
2017-11-11 19:23:33 +00:00
|
|
|
|
2017-04-23 02:43:42 +00:00
|
|
|
def create
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize @user, :confirm?
|
2024-01-15 18:04:58 +00:00
|
|
|
@user.mark_email_as_confirmed!
|
2017-11-24 01:05:53 +00:00
|
|
|
log_action :confirm, @user
|
2017-04-23 02:43:42 +00:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
2018-05-06 08:59:03 +00:00
|
|
|
def resend
|
|
|
|
authorize @user, :confirm?
|
|
|
|
|
|
|
|
@user.resend_confirmation_instructions
|
|
|
|
|
2022-11-02 17:50:21 +00:00
|
|
|
log_action :resend, @user
|
2018-05-06 08:59:03 +00:00
|
|
|
|
|
|
|
flash[:notice] = I18n.t('admin.accounts.resend_confirmation.success')
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
2017-04-23 02:43:42 +00:00
|
|
|
private
|
|
|
|
|
2024-01-25 15:13:41 +00:00
|
|
|
def redirect_confirmed_user
|
|
|
|
flash[:error] = I18n.t('admin.accounts.resend_confirmation.already_confirmed')
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_confirmed?
|
|
|
|
@user.confirmed?
|
2018-05-06 08:59:03 +00:00
|
|
|
end
|
2017-04-23 02:43:42 +00:00
|
|
|
end
|
|
|
|
end
|