mirror of
https://github.com/apache/nifi.git
synced 2025-02-07 02:28:31 +00:00
[NIFI-13229] - Include branch when submitting to save version control endpoint. (#8830)
This commit is contained in:
parent
e6a90eb1e8
commit
d20fa9417d
@ -3265,7 +3265,8 @@ export class FlowEffects {
|
|||||||
flowId: saveRequest.existingFlowId,
|
flowId: saveRequest.existingFlowId,
|
||||||
bucketId: saveRequest.bucket,
|
bucketId: saveRequest.bucket,
|
||||||
registryId: saveRequest.registry,
|
registryId: saveRequest.registry,
|
||||||
comments: saveRequest.comments || ''
|
comments: saveRequest.comments || '',
|
||||||
|
branch: saveRequest.branch
|
||||||
},
|
},
|
||||||
processGroupId: saveRequest.processGroupId,
|
processGroupId: saveRequest.processGroupId,
|
||||||
processGroupRevision: saveRequest.revision
|
processGroupRevision: saveRequest.revision
|
||||||
@ -3282,7 +3283,8 @@ export class FlowEffects {
|
|||||||
registryId: saveRequest.registry,
|
registryId: saveRequest.registry,
|
||||||
flowName: saveRequest.flowName,
|
flowName: saveRequest.flowName,
|
||||||
description: saveRequest.flowDescription || '',
|
description: saveRequest.flowDescription || '',
|
||||||
comments: saveRequest.comments || ''
|
comments: saveRequest.comments || '',
|
||||||
|
branch: saveRequest.branch
|
||||||
},
|
},
|
||||||
processGroupId: saveRequest.processGroupId,
|
processGroupId: saveRequest.processGroupId,
|
||||||
processGroupRevision: saveRequest.revision
|
processGroupRevision: saveRequest.revision
|
||||||
|
@ -588,6 +588,7 @@ export interface VersionedFlow {
|
|||||||
description: string;
|
description: string;
|
||||||
comments: string;
|
comments: string;
|
||||||
action: string;
|
action: string;
|
||||||
|
branch?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SparseVersionedFlow {
|
export interface SparseVersionedFlow {
|
||||||
@ -598,6 +599,7 @@ export interface SparseVersionedFlow {
|
|||||||
flowId?: string;
|
flowId?: string;
|
||||||
flowName?: string;
|
flowName?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
|
branch?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface VersionedFlowSnapshotMetadataEntity {
|
export interface VersionedFlowSnapshotMetadataEntity {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user