0
0
Fork 0

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
This commit is contained in:
Matt Jankowski 2017-04-29 18:25:38 -04:00 committed by Eugen Rochko
parent 8325866c61
commit f48cb3eb17
6 changed files with 108 additions and 7 deletions

View file

@ -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