mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 18:18:27 +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,
|
||||
bucketId: saveRequest.bucket,
|
||||
registryId: saveRequest.registry,
|
||||
comments: saveRequest.comments || ''
|
||||
comments: saveRequest.comments || '',
|
||||
branch: saveRequest.branch
|
||||
},
|
||||
processGroupId: saveRequest.processGroupId,
|
||||
processGroupRevision: saveRequest.revision
|
||||
@ -3282,7 +3283,8 @@ export class FlowEffects {
|
||||
registryId: saveRequest.registry,
|
||||
flowName: saveRequest.flowName,
|
||||
description: saveRequest.flowDescription || '',
|
||||
comments: saveRequest.comments || ''
|
||||
comments: saveRequest.comments || '',
|
||||
branch: saveRequest.branch
|
||||
},
|
||||
processGroupId: saveRequest.processGroupId,
|
||||
processGroupRevision: saveRequest.revision
|
||||
|
@ -588,6 +588,7 @@ export interface VersionedFlow {
|
||||
description: string;
|
||||
comments: string;
|
||||
action: string;
|
||||
branch?: string;
|
||||
}
|
||||
|
||||
export interface SparseVersionedFlow {
|
||||
@ -598,6 +599,7 @@ export interface SparseVersionedFlow {
|
||||
flowId?: string;
|
||||
flowName?: string;
|
||||
description?: string;
|
||||
branch?: string;
|
||||
}
|
||||
|
||||
export interface VersionedFlowSnapshotMetadataEntity {
|
||||
|
Loading…
x
Reference in New Issue
Block a user