mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:07:34 -04:00 
			
		
		
		
	* Add subdomain to cloudflare * Fire subdomain event when saving client portal settings * Refactor to include zones * JSON decode to array * Proxy requests
		
			
				
	
	
		
			22 lines
		
	
	
		
			333 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			333 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Events;
 | |
| 
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| class SubdomainWasUpdated extends Event
 | |
| {
 | |
|     use SerializesModels;
 | |
|     public $account;
 | |
| 
 | |
|     /**
 | |
|      * Create a new event instance.
 | |
|      *
 | |
|      * @param $account
 | |
|      */
 | |
|     public function __construct($account)
 | |
|     {
 | |
|         $this->account = $account;
 | |
|     }
 | |
| }
 |