1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Events/SubdomainWasUpdated.php
David Bomba 19881bd41f
Cloudflare DNS Zone Updates (#1733)
* Add subdomain to cloudflare

* Fire subdomain event when saving client portal settings

* Refactor to include zones

* JSON decode to array

* Proxy requests
2017-11-06 20:58:53 +11:00

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;
}
}