This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-22 19:43:42 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ConfirmationsController < BaseController
|
2017-11-11 11:23:33 -08:00
|
|
|
before_action :set_user
|
|
|
|
|
2017-04-22 19:43:42 -07:00
|
|
|
def create
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @user, :confirm?
|
|
|
|
@user.confirm!
|
2017-11-23 17:05:53 -08:00
|
|
|
log_action :confirm, @user
|
2017-04-22 19:43:42 -07:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-11 11:23:33 -08:00
|
|
|
def set_user
|
|
|
|
@user = Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
|
2017-04-22 19:43:42 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|