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