doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/javascript/ExpressScanner.java [190:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for (JavaScriptAst.ExpressRoute route : routes) {
            String httpMethod = route.httpMethod().toUpperCase();
            String path = route.path();
            String routerName = route.routerName();

            // Create API endpoint
            ApiEndpoint endpoint = new ApiEndpoint(
                componentId,
                ApiType.REST,
                path,
                httpMethod,
                componentId + "." + routerName + "." + route.httpMethod(),
                null, // Request schema not extracted
                null, // Response schema not extracted
                null  // Authentication not detected
            );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/javascript/ExpressScanner.java [276:291]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for (JavaScriptAst.ExpressRoute route : routes) {
            String httpMethod = route.httpMethod().toUpperCase();
            String path = route.path();
            String routerName = route.routerName();

            // Create API endpoint
            ApiEndpoint endpoint = new ApiEndpoint(
                componentId,
                ApiType.REST,
                path,
                httpMethod,
                componentId + "." + routerName + "." + route.httpMethod(),
                null, // Request schema not extracted
                null, // Response schema not extracted
                null  // Authentication not detected
            );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



