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
A `TimeSpan` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue.
50
+
A `string` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue. The default value is eight hours. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
51
+
52
+
#### ActionNotificationPeriod
53
+
54
+
A `string` representing the period between checking for, and sending, action notifications for active workflows. The default value is five minutes. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
48
55
49
56
#### EnableTestLicense
50
57
@@ -98,6 +105,7 @@ All available `SettingsCustomization` options are illustrated below along with t
98
105
"ConfigureApprovalThreshold": bool,
99
106
"RejectionResetsApprovals": bool,
100
107
"LockIfActive": bool,
108
+
"ScheduledContentLock": 0|1|2 matching the ScheduledLockMode enum values,
101
109
"MandatoryComments": bool,
102
110
"AllowAttachments": bool,
103
111
"AllowScheduling": bool,
@@ -123,9 +131,8 @@ All available `SettingsCustomization` options are illustrated below along with t
123
131
}
124
132
}
125
133
```
126
-
127
134
{% hint style="info" %}
128
-
These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
135
+
*These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
@@ -51,7 +52,11 @@ All Workflow configuration is optional and will fallback to defaults, if not set
51
52
52
53
#### ReminderNotificationPeriod
53
54
54
-
A `TimeSpan` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue.
55
+
A `string` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue. The default value is eight hours. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
56
+
57
+
#### ActionNotificationPeriod
58
+
59
+
A `string` representing the period between checking for, and sending, action notifications for active workflows. The default value is five minutes. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
55
60
56
61
#### EnableTestLicense
57
62
@@ -109,6 +114,7 @@ All available `SettingsCustomization` options are illustrated below along with t
109
114
"ConfigureApprovalThreshold": bool,
110
115
"RejectionResetsApprovals": bool,
111
116
"LockIfActive": bool,
117
+
"ScheduledContentLock": 0|1|2 matching the ScheduledLockMode enum values,
112
118
"MandatoryComments": bool,
113
119
"AllowAttachments": bool,
114
120
"AllowScheduling": bool,
@@ -136,7 +142,7 @@ All available `SettingsCustomization` options are illustrated below along with t
136
142
```
137
143
138
144
{% hint style="info" %}
139
-
These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
145
+
*These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
140
146
{% endhint %}
141
147
142
148
### General
@@ -173,6 +179,16 @@ When true, and ApprovalThreshold is Most or All, rejecting a task resets progres
173
179
174
180
When true, prevents editing content where the node is in an active workflow. When false, content can be edited at any stage of a workflow.
175
181
182
+
#### ScheduledContentLock (int)
183
+
184
+
Sets the scheduled content lock to one of None (0), Workflow (1), or All (2):
| 0 (_default_) | None | Scheduled content is not locked |
189
+
| 1 | Workflow | Content scheduled via Workflow can not be edited |
190
+
| 2 | All | All scheduled content can not be edited
191
+
176
192
#### MandatoryComments (bool)
177
193
178
194
When true (default), comments are required when approving a workflow task. When false, comments are optional when approving a workflow task. Comments are always required when submitting changes for approval.
0 commit comments