Feat: 新增定时自动存点指令,每5分钟为在线用户发放经验金币并推送系统通知

This commit is contained in:
2026-02-27 12:39:23 +08:00
parent dc9294207b
commit 2044feec12
2 changed files with 238 additions and 0 deletions
+3
View File
@@ -10,3 +10,6 @@ Artisan::command('inspire', function () {
// 每天凌晨 3 点清理超过 30 天的聊天记录
Schedule::command('messages:purge')->dailyAt('03:00');
// 每 5 分钟为所有在线用户自动存点(经验/金币/等级)
Schedule::command('chatroom:auto-save-exp')->everyFiveMinutes();