summaryrefslogtreecommitdiffstats
path: root/app/controllers/admin/confirmations_controller.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-29 18:25:38 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-04-30 00:25:38 +0200
commitf48cb3eb170314cba1938522c0da44af21d47e83 (patch)
treeff588793c76f7e9ef43da8082d509c6f03988709 /app/controllers/admin/confirmations_controller.rb
parent8325866c6101c7b63b616e7e0035080ef1af96a7 (diff)
More coverage yes more even more (#2627)
* Add coverage for admin/confirmations controller * Coverage for statuses controller show action * Add coverage for admin/domain_blocks controller * Add coverage for settings/profiles#update
Diffstat (limited to 'app/controllers/admin/confirmations_controller.rb')
-rw-r--r--app/controllers/admin/confirmations_controller.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/controllers/admin/confirmations_controller.rb b/app/controllers/admin/confirmations_controller.rb
index 6c41999e0ed..2542e21ee5b 100644
--- a/app/controllers/admin/confirmations_controller.rb
+++ b/app/controllers/admin/confirmations_controller.rb
@@ -2,17 +2,15 @@
module Admin
class ConfirmationsController < BaseController
- before_action :set_account
-
def create
- @account.user.confirm
+ account_user.confirm
redirect_to admin_accounts_path
end
private
- def set_account
- @account = Account.find(params[:account_id])
+ def account_user
+ Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end
end
end