chinwagsocial/app/controllers/admin/confirmations_controller.rb
Matt Jankowski f48cb3eb17 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
2017-04-30 00:25:38 +02:00

17 lines
318 B
Ruby

# 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