featherbit UI
    Preparing search index...

    Interface Route

    A routing rule binding a request matcher to a named policy.

    Served and persisted by the CRUD handlers in src/admin/routes.rs.

    interface Route {
        match: MatchRule;
        name: string;
        policy: string;
    }
    Index
    match: MatchRule

    Conditions an incoming request must satisfy for this route to apply.

    name: string

    Unique route name, used as the identifier in Admin API paths.

    policy: string

    Name of the Policy executed for requests matching this route.