feat(FN-2586): merge fusion/fn-2586

This commit is contained in:
gsxdsm
2026-04-26 11:49:43 -07:00
parent bf335dc1f5
commit b5200ba81b
23 changed files with 411 additions and 41 deletions

View File

@@ -2638,6 +2638,7 @@ describe("TaskStore", () => {
},
cloudflare: {
enabled: true,
quickTunnel: false,
tunnelName: "main-tunnel",
tunnelToken: "cf-secret-token",
ingressUrl: "https://project.example.com",

View File

@@ -167,6 +167,7 @@ export const DEFAULT_PROJECT_SETTINGS = {
},
cloudflare: {
enabled: false,
quickTunnel: false,
tunnelName: "",
tunnelToken: null,
ingressUrl: "",

View File

@@ -1189,6 +1189,7 @@ export interface RemoteAccessProvidersConfig {
};
cloudflare: {
enabled: boolean;
quickTunnel: boolean;
tunnelName: string;
tunnelToken: string | null;
ingressUrl: string;