mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update model observers, handle events after all transactions are committed
This commit is contained in:
parent
1658b689e8
commit
78665b0c17
7 changed files with 49 additions and 0 deletions
|
@ -9,6 +9,13 @@ use App\Services\AccountService;
|
||||||
|
|
||||||
class AvatarObserver
|
class AvatarObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the avatar "created" event.
|
* Handle the avatar "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\LikeService;
|
||||||
|
|
||||||
class LikeObserver
|
class LikeObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the Like "created" event.
|
* Handle the Like "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -9,6 +9,13 @@ use Log;
|
||||||
|
|
||||||
class ModLogObserver
|
class ModLogObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the mod log "created" event.
|
* Handle the mod log "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\NotificationService;
|
||||||
|
|
||||||
class NotificationObserver
|
class NotificationObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the notification "created" event.
|
* Handle the notification "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\AccountService;
|
||||||
|
|
||||||
class ProfileObserver
|
class ProfileObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the Profile "created" event.
|
* Handle the Profile "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\StatusHashtagService;
|
||||||
|
|
||||||
class StatusHashtagObserver
|
class StatusHashtagObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the notification "created" event.
|
* Handle the notification "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\UserFilterService;
|
||||||
|
|
||||||
class UserFilterObserver
|
class UserFilterObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the user filter "created" event.
|
* Handle the user filter "created" event.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue