2023-02-16 22:39:57 +00:00
|
|
|
import type { LocalRoute } from "../types/types";
|
2023-01-07 15:50:28 +00:00
|
|
|
|
|
|
|
export const RoutingPages: { label: string; value: NonNullable<LocalRoute["action"]>["type"] }[] = [
|
|
|
|
{
|
|
|
|
label: "Custom Page",
|
|
|
|
value: "customPageMessage",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "External Redirect",
|
|
|
|
value: "externalRedirectUrl",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Event Redirect",
|
|
|
|
value: "eventTypeRedirectUrl",
|
|
|
|
},
|
|
|
|
];
|