use string for execution order

nicer for transfer and debugging
pull/37389/head
Daniel Schmidt 9 months ago
parent eb26b72d55
commit d3f6b721e9

@ -198,12 +198,12 @@ type IdentitySchema struct {
Body *configschema.Object
}
type ExecutionOrder int
type ExecutionOrder string
const (
ExecutionOrderInvalid ExecutionOrder = iota
ExecutionOrderBefore
ExecutionOrderAfter
ExecutionOrderInvalid ExecutionOrder = "invalid"
ExecutionOrderBefore ExecutionOrder = "before"
ExecutionOrderAfter ExecutionOrder = "after"
)
type LinkedResourceSchema struct {

Loading…
Cancel
Save