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:
parent
8325866c61
commit
f48cb3eb17
6 changed files with 108 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue