Preparing search index...

    Type Alias RoutePermission

    The access level recorded for a plugin route registered via PluginRouter.access, as handed to the security strategy.

    type RoutePermission = {
        method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
        path: string;
        permission: RouteAccessLevel;
    }
    Index
    method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE"
    path: string
    permission: RouteAccessLevel