chore: commit current workspace changes
This commit is contained in:
@@ -202,19 +202,16 @@ Schedule::command('collections:dispatch-maintenance')
|
||||
->withoutOverlapping()
|
||||
->runInBackground();
|
||||
|
||||
Schedule::job(new \App\Jobs\RankComputeArtworkScoresJob())
|
||||
->hourlyAt(5)
|
||||
->name('rank-compute-artwork-scores');
|
||||
|
||||
Schedule::job(new \App\Jobs\RankBuildListsJob())
|
||||
->hourlyAt(15)
|
||||
->name('rank-build-lists')
|
||||
->withoutOverlapping();
|
||||
|
||||
Schedule::job(new \App\Jobs\UpdateLeaderboardsJob())
|
||||
->hourlyAt(20)
|
||||
Schedule::command('leaderboards:refresh')
|
||||
->hourlyAt(21)
|
||||
->name('leaderboards-refresh')
|
||||
->withoutOverlapping();
|
||||
->withoutOverlapping()
|
||||
->runInBackground();
|
||||
|
||||
Schedule::job(new \App\Jobs\RebuildTrendingNovaCardsJob())
|
||||
->hourlyAt(25)
|
||||
|
||||
@@ -982,6 +982,7 @@ Route::middleware(['auth', 'admin.access'])
|
||||
Route::get('/usernames/moderation', [AdminController::class, 'usernameQueue'])->name('usernames');
|
||||
Route::get('/uploads', [AdminController::class, 'uploadQueue'])->name('uploads');
|
||||
Route::get('/settings', [AdminController::class, 'settings'])->name('settings');
|
||||
Route::middleware('admin.role')->get('/auth-audit', [AdminController::class, 'authAudit'])->name('auth-audit');
|
||||
|
||||
Route::middleware(['artwork.maturity.access'])
|
||||
->prefix('ai-biography')
|
||||
|
||||
Reference in New Issue
Block a user