mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix(API): Accept settings.executionOrder
in workflow creation (#9072)
This commit is contained in:
parent
ae3f164c5c
commit
0c90c7c8c1
|
@ -22,3 +22,6 @@ properties:
|
|||
timezone:
|
||||
type: string
|
||||
example: America/New_York
|
||||
executionOrder:
|
||||
type: string
|
||||
example: v1
|
||||
|
|
|
@ -696,6 +696,7 @@ describe('POST /workflows', () => {
|
|||
saveDataSuccessExecution: 'all',
|
||||
executionTimeout: 3600,
|
||||
timezone: 'America/New_York',
|
||||
executionOrder: 'v1',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue