Framework updates
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user