обновление лаунчера + упущенная картинка на лендинг
This commit is contained in:
@@ -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']);
|
||||
});
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user