2017-04-23 11:43:42 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ConfirmationsController < BaseController
|
|
|
|
def create
|
2017-04-30 07:25:38 +09:00
|
|
|
account_user.confirm
|
2017-04-23 11:43:42 +09:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-30 07:25:38 +09:00
|
|
|
def account_user
|
|
|
|
Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
|
2017-04-23 11:43:42 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|