mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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:
|
timezone:
|
||||||
type: string
|
type: string
|
||||||
example: America/New_York
|
example: America/New_York
|
||||||
|
executionOrder:
|
||||||
|
type: string
|
||||||
|
example: v1
|
||||||
|
|
|
@ -696,6 +696,7 @@ describe('POST /workflows', () => {
|
||||||
saveDataSuccessExecution: 'all',
|
saveDataSuccessExecution: 'all',
|
||||||
executionTimeout: 3600,
|
executionTimeout: 3600,
|
||||||
timezone: 'America/New_York',
|
timezone: 'America/New_York',
|
||||||
|
executionOrder: 'v1',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue