zibri
    Preparing search index...

    The configuration for a controller route.

    type ControllerRouteConfiguration = {
        controllerMethod: string;
        httpMethod: HttpMethod;
        route: Route;
    }
    Index

    Properties

    controllerMethod: string

    The name of the method on the controller that is responsible for handling requests to the endpoint.

    httpMethod: HttpMethod

    The http method used by the route.

    route: Route

    The actual route under which the endpoint should be reached.