update
This commit is contained in:
@ -98,7 +98,7 @@ export function validateRouteAction(action: IRouteAction): { valid: boolean; err
|
||||
// Validate action type
|
||||
if (!action.type) {
|
||||
errors.push('Action type is required');
|
||||
} else if (!['forward', 'redirect', 'static', 'block'].includes(action.type)) {
|
||||
} else if (!['forward', 'socket-handler'].includes(action.type)) {
|
||||
errors.push(`Invalid action type: ${action.type}`);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user