0b60aa4249
## Context Add routes to migration V2 - Resolvers - Service v2 - Builder - Validator - Action runner Next PR: Add to twenty-cli to sync routes with serverless
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
import { type FlatRouteTrigger } from 'src/engine/metadata-modules/route-trigger/types/flat-route-trigger.type';
|
|
|
|
export const FLAT_ROUTE_TRIGGER_EDITABLE_PROPERTIES = [
|
|
'path',
|
|
'isAuthRequired',
|
|
'httpMethod',
|
|
] as const satisfies (keyof FlatRouteTrigger)[];
|