feat(authorization): 火柴人排名更新频率从每天凌晨1点改为每10分钟

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-23 06:50:15 -08:00
parent 085cb3f40b
commit d24a474d02
1 changed files with 2 additions and 2 deletions

View File

@ -107,9 +107,9 @@ export class MonthlyAssessmentScheduler {
}
/**
* 1
* 10
*/
@Cron('0 1 * * *')
@Cron('*/10 * * * *')
async updateStickmanRankings(): Promise<void> {
this.logger.log('开始更新火柴人排名数据...')