add event news_created

This commit is contained in:
xiaomlove
2024-04-03 04:05:04 +08:00
parent 4ad0d7a1eb
commit 8d07ad98f7
5 changed files with 46 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Console\Commands;
use App\Events\NewsCreated;
use App\Events\TorrentCreated;
use App\Events\UserDestroyed;
use App\Events\UserDisabled;
@@ -29,6 +30,7 @@ class FireEvent extends Command
"user_destroyed" => UserDestroyed::class,
"user_disabled" => UserDisabled::class,
"user_enabled" => UserEnabled::class,
"news_created" => NewsCreated::class,
];
/**