Skip to content

Commit bece085

Browse files
committed
Update UI Server
1 parent fe49eef commit bece085

File tree

153 files changed

+159
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+159
-154
lines changed

config/development.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ disableWriteActions: false
1515
workflowTerminateDisabled: false
1616
workflowCancelDisabled: false
1717
workflowSignalDisabled: false
18+
workflowUpdateDisabled: false
1819
workflowResetDisabled: false
1920
batchActionsDisabled: false
2021
startWorkflowDisabled: false

docker/config-template.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ disableWriteActions: {{ default .Env.TEMPORAL_DISABLE_WRITE_ACTIONS "false" }}
1414
workflowTerminateDisabled: {{ default .Env.TEMPORAL_WORKFLOW_TERMINATE_DISABLED "false" }}
1515
workflowCancelDisabled: {{ default .Env.TEMPORAL_WORKFLOW_CANCEL_DISABLED "false" }}
1616
workflowSignalDisabled: {{ default .Env.TEMPORAL_WORKFLOW_SIGNAL_DISABLED "false" }}
17+
workflowUpdateDisabled: {{ default .Env.TEMPORAL_WORKFLOW_UPDATE_DISABLED "false" }}
1718
workflowResetDisabled: {{ default .Env.TEMPORAL_WORKFLOW_RESET_DISABLED "false" }}
1819
batchActionsDisabled: {{ default .Env.TEMPORAL_BATCH_ACTIONS_DISABLED "false" }}
1920
startWorkflowDisabled: {{ default .Env.TEMPORAL_START_WORKFLOW_DISABLED "false" }}

server/api/handler.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ type SettingsResponse struct {
6868
WorkflowTerminateDisabled bool
6969
WorkflowCancelDisabled bool
7070
WorkflowSignalDisabled bool
71+
WorkflowUpdateDisabled bool
7172
WorkflowResetDisabled bool
7273
BatchActionsDisabled bool
7374
StartWorkflowDisabled bool
@@ -142,6 +143,7 @@ func GetSettings(cfgProvider *config.ConfigProviderWithRefresh) func(echo.Contex
142143
WorkflowTerminateDisabled: cfg.WorkflowTerminateDisabled,
143144
WorkflowCancelDisabled: cfg.WorkflowCancelDisabled,
144145
WorkflowSignalDisabled: cfg.WorkflowSignalDisabled,
146+
WorkflowUpdateDisabled: cfg.WorkflowUpdateDisabled,
145147
WorkflowResetDisabled: cfg.WorkflowResetDisabled,
146148
BatchActionsDisabled: cfg.BatchActionsDisabled,
147149
StartWorkflowDisabled: cfg.StartWorkflowDisabled,

server/config/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ type (
5656
WorkflowTerminateDisabled bool `yaml:"workflowTerminateDisabled"`
5757
WorkflowCancelDisabled bool `yaml:"workflowCancelDisabled"`
5858
WorkflowSignalDisabled bool `yaml:"workflowSignalDisabled"`
59+
WorkflowUpdateDisabled bool `yaml:"workflowUpdateDisabled"`
5960
WorkflowResetDisabled bool `yaml:"workflowResetDisabled"`
6061
// Whether bulk/batch actions are enabled in the UI
6162
BatchActionsDisabled bool `yaml:"batchActionsDisabled"`

ui/assets/local/_app/immutable/assets/modal.BWGx9EB4.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/assets/local/_app/immutable/assets/modal.CK65NYAC.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

ui/assets/local/_app/immutable/chunks/accordion.4nJ0JZlP.js renamed to ui/assets/local/_app/immutable/chunks/accordion.BlWrMVqn.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/assets/local/_app/immutable/chunks/active-events.DM-s1Hfk.js renamed to ui/assets/local/_app/immutable/chunks/active-events.DPMuik2L.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/assets/local/_app/immutable/chunks/add-search-attributes.D-pAcNwg.js renamed to ui/assets/local/_app/immutable/chunks/add-search-attributes.D_cYigJ0.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/assets/local/_app/immutable/chunks/auth-user.3yqaXeFN.js renamed to ui/assets/local/_app/immutable/chunks/auth-user.UX456PmS.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/assets/local/_app/immutable/chunks/batch-operations.Cnk-xn5S.js renamed to ui/assets/local/_app/immutable/chunks/batch-operations.CWsqADZ3.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)