blob: 2542e21ee5be0ba1cc95ddf4859017963678c5ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# frozen_string_literal: true
module Admin
class ConfirmationsController < BaseController
def create
account_user.confirm
redirect_to admin_accounts_path
end
private
def account_user
Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end
end
end
|