Files
wehub-resource-sync a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:56 +08:00

49 lines
1.3 KiB
JavaScript

// OSS Conductor UI Runtime Configuration
// This file configures feature flags at runtime for the OSS UI
window.conductor = {
// Authentication - DISABLED for OSS
ACCESS_MANAGEMENT: false,
RBAC: false,
COPY_TOKEN: false,
// OSS Core Features
SCHEDULER: true,
TASK_VISIBILITY: "READ",
CREATOR_ENABLE_CREATOR: true,
CREATOR_ENABLE_REAFLOW_DIAGRAM: true,
TASK_INDEXING: false,
SHOW_EVENT_MONITOR: true,
ENABLE_DARK_MODE_TOGGLE: true,
// Enterprise Features - DISABLED for OSS
TAG_VISIBILITY: false,
WORKFLOW_INTROSPECTION: false,
WORKFLOW_SUMMARIZE: false,
HUMAN_TASK: false,
INTEGRATIONS: false,
SECRETS: false,
WEBHOOKS: false,
SERVICE_REGISTRY: false,
GATEWAY_ENABLED: false,
REMOTE_SERVICES: false,
SENDGRID_TASK_ENABLED: false,
SKU_ENABLED: false,
// Embedded AgentSpan agent UI. Default off here; the Conductor server overrides
// /context.js at runtime with the value of conductor.integrations.ai.enabled.
AGENTSPAN_ENABLED: false,
// UI Configuration
PLAYGROUND: false,
ENABLE_METRICS_DASHBOARD: false,
METRICS_ORIGIN_URL: "",
CUSTOM_LOGO_URL: "",
MULTITENANCY_TYPE: "user_based",
DEFAULT_ROLES: "ADMIN",
};
// No authentication configuration for OSS
window.authConfig = undefined;
window.auth0Identifiers = undefined;