* 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
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			318 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 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
 |