mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
d1dc1a7e5b
- Fixes #583 and resolves #583 - Creating and updating tasks creates an activity now - Each has its own event - The activity is shown on the dashboard
29 lines
410 B
PHP
29 lines
410 B
PHP
<?php namespace App\Events;
|
|
|
|
|
|
use App\Models\Task;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class TaskWasCreated
|
|
*/
|
|
class TaskWasCreated extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Task
|
|
*/
|
|
public $task;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Task $task
|
|
*/
|
|
public function __construct(Task $task)
|
|
{
|
|
$this->task = $task;
|
|
}
|
|
}
|