You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/prefect/settings/models/server/ui.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,11 @@ class ServerUISettings(PrefectBaseSettings):
19
19
),
20
20
)
21
21
22
+
v2_enabled: bool=Field(
23
+
default=False,
24
+
description="Whether to serve the experimental V2 UI instead of the default V1 UI.",
25
+
)
26
+
22
27
api_url: Optional[str] =Field(
23
28
default=None,
24
29
description="The connection url for communication from the UI to the API. Defaults to `PREFECT_API_URL` if set. Otherwise, the default URL is generated from `PREFECT_SERVER_API_HOST` and `PREFECT_SERVER_API_PORT`.",
0 commit comments