[NIFI-13229] - Include branch when submitting to save version control endpoint. (#8830)

This commit is contained in:
Rob Fellows 2024-05-14 13:11:21 -04:00 committed by GitHub
parent e6a90eb1e8
commit d20fa9417d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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 {