[routing-utils] add isInternal flag (#9761)

Adds a new Route property called `isInternal` that indicates whether or not this is a project route or a Vercel platform route. Routes with this flag will be hidden from project-specific lists of routes to avoid confusion.

Verified on staging.
This commit is contained in:
Sean Massa
2023-04-07 16:24:40 -05:00
committed by GitHub
parent f774d5f7a2
commit 19804b78a9

View File

@@ -113,6 +113,9 @@ export const routesSchema = {
check: {
type: 'boolean',
},
isInternal: {
type: 'boolean',
},
status: {
type: 'integer',
minimum: 100,