Type Alias: RoutePolicy
ts
type RoutePolicy =
| string
| {
config: {
actions: string[];
};
name: string;
};Defined in: routes.ts:4
A policy entry as Strapi accepts it on a route's config.