mirror of https://github.com/pixelfed/pixelfed
Add modlog notifications
parent
6689a6fe3c
commit
51642fc40d
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
namespace App\Observers;
|
||||
|
||||
use App\Notification;
|
||||
use App\ModLog;
|
||||
use App\Services\ModLogService;
|
||||
use Log;
|
||||
|
||||
class ModLogObserver
|
||||
{
|
||||
/**
|
||||
* Handle the mod log "created" event.
|
||||
*
|
||||
* @param \App\ModLog $modLog
|
||||
* @return void
|
||||
*/
|
||||
public function created(ModLog $modLog)
|
||||
{
|
||||
ModLogService::boot()->load($modLog)->fanout();
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the mod log "updated" event.
|
||||
*
|
||||
* @param \App\ModLog $modLog
|
||||
* @return void
|
||||
*/
|
||||
public function updated(ModLog $modLog)
|
||||
{
|
||||
ModLogService::boot()->load($modLog)->fanout();
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the mod log "deleted" event.
|
||||
*
|
||||
* @param \App\ModLog $modLog
|
||||
* @return void
|
||||
*/
|
||||
public function deleted(ModLog $modLog)
|
||||
{
|
||||
ModLogService::boot()->load($modLog)->unfanout();
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the mod log "restored" event.
|
||||
*
|
||||
* @param \App\ModLog $modLog
|
||||
* @return void
|
||||
*/
|
||||
public function restored(ModLog $modLog)
|
||||
{
|
||||
ModLogService::boot()->load($modLog)->fanout();
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the mod log "force deleted" event.
|
||||
*
|
||||
* @param \App\ModLog $modLog
|
||||
* @return void
|
||||
*/
|
||||
public function forceDeleted(ModLog $modLog)
|
||||
{
|
||||
ModLogService::boot()->load($modLog)->unfanout();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue