feat: web inbox per Sekai design handoff

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BCrwHHnGCB5XH968Nxokqw
This commit is contained in:
nikita.hohlov
2026-09-04 08:16:04 -03:00
parent 75ac268c53
commit 027c9f7784
6 changed files with 484 additions and 223 deletions

View File

@@ -1,6 +1,7 @@
<?php
use App\Http\Controllers\ActionController;
use App\Http\Controllers\InboxController;
use App\Http\Controllers\Me\ChannelsController;
use App\Http\Controllers\Me\EventsController as MeEvents;
use App\Http\Controllers\Me\ProfileController;
@@ -14,6 +15,7 @@ Route::post('/hooks/telegram', TelegramWebhookController::class);
// Под SSO хаба
Route::middleware('remote.user')->group(function () {
Route::get('/', InboxController::class);
Route::get('/me', [ProfileController::class, 'show']);
Route::patch('/me', [ProfileController::class, 'update']);
Route::post('/me/heartbeat', [ProfileController::class, 'heartbeat']);