обновление лаунчера + упущенная картинка на лендинг

This commit is contained in:
2026-05-16 22:47:33 +04:00
parent 34c7e64200
commit d72650bbdc
16 changed files with 29381 additions and 8 deletions
+4
View File
@@ -14,3 +14,7 @@ Route::middleware('auth:api')->prefix('launcher')->group(function () {
->where('path', '.*');
Route::get('news', [LauncherNewsController::class, 'index']);
});
Route::middleware(['launcher'])->prefix('service')->name('service.')->group(function () {
Route::post('/update-appcast', [LauncherController::class, 'updateAppcast']);
});
+1
View File
@@ -12,6 +12,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/', [LandingController::class, 'index'])->name('landing.index');
Route::get('/launcher/login-news.txt', [WowLoginNewsFeedController::class, 'show'])->name('launcher.login-news.show');
Route::get('/appcast.xml', static fn() => Storage::disk('public')->get('appcast.xml'));
Route::post('/register', [LandingController::class, 'register'])
->middleware('throttle:8,1')
->name('game-account.store');