From 3937fc8164a49d9b545fe8e688c8efe7dff8505b Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:36:19 +0530 Subject: [PATCH] docs: plan for future --- structs.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/structs.go b/structs.go index c6eaf7d..11e736b 100755 --- a/structs.go +++ b/structs.go @@ -1207,7 +1207,9 @@ type Trigger struct { ExecutionDelay int64 `json:"execution_delay" yaml:"execution_delay" datastore:"execution_delay"` AppAssociation WorkflowApp `json:"app_association" yaml:"app_association" datastore:"app_association"` ParentControlled bool `json:"parent_controlled" datastore:"parent_controlled"` // If the parent workflow node exists, and shouldn't be editable by child workflow - + + // TODO: make this a predictable field + // generated from current ID + workflow ID + orgid as seed ReplacementForTrigger string `json:"replacement_for_trigger" datastore:"replacement_for_trigger"` // If this trigger is a replacement for another trigger }