jimpex
    Preparing search index...

    Type Alias GatewayControllerRoute

    The information for all the HTTP methods that can be handled for an endpoint.

    type GatewayControllerRoute = {
        methods: GatewayControllerRouteMethod[];
        path: string;
        route: string;
    }
    Index

    Properties

    Properties

    A list with all the methods the controller uses on the route.

    path: string

    The path to the endpoint, relative to the entry point.

    route: string

    The path for the route in the controller. This is different from path as it's possible for the gateway to be implemented using the root option.