We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d135f commit beca6b7Copy full SHA for beca6b7
schema/concurrency.go
@@ -0,0 +1,15 @@
1
+package schema
2
+
3
+type EnableConcurrency struct {
4
+ Type string `json:"type" default:"boolean"`
5
+ Title string `json:"title" default:"Enable Concurrency"`
6
+ Default bool `json:"default" default:"false"`
7
+ ReadOnly bool `json:"readOnly" default:"false"`
8
+}
9
10
+type ConcurrencyLimit struct {
11
+ Type string `json:"type" default:"number"`
12
+ Title string `json:"title" default:"Concurrency Limit"`
13
+ Default int `json:"default" default:"0"`
14
15
0 commit comments