Framework updates

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2026-02-01 05:16:45 +00:00
parent f48cda006a
commit 0efdcd4cde
27 changed files with 2970 additions and 153 deletions

View File

@@ -19,6 +19,8 @@ use App\RSpade\Core\Debug\Debugger;
use App\RSpade\Core\Dispatch\AssetHandler;
use App\RSpade\Core\Dispatch\RouteResolver;
use App\RSpade\Core\Manifest\Manifest;
use App\RSpade\Core\Portal\Portal_Dispatcher;
use App\RSpade\Core\Portal\Rsx_Portal;
use App\RSpade\Core\Rsx;
/**
@@ -83,6 +85,12 @@ class Dispatcher
$request = $request ?? request();
// Check if this is a portal request - delegate to Portal_Dispatcher
if (Rsx_Portal::is_portal_request()) {
console_debug('DISPATCH', 'Portal request detected, delegating to Portal_Dispatcher');
return Portal_Dispatcher::dispatch($url, $method, $extra_params, $request);
}
// Custom session is handled by Session::init() in RsxAuth
// Check if this is an asset request