Skip to content

Commit 15250bf

Browse files
EA mode wire fix (#5462)
1 parent 007a6e5 commit 15250bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/appStore/installedApp/service/EAMode/EAModeDeploymentService.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ type EAModeDeploymentService interface {
5151
GetDeploymentHistory(ctx context.Context, installedApp *appStoreBean.InstallAppVersionDTO) (*gRPC.HelmAppDeploymentHistory, error)
5252
GetDeploymentHistoryInfo(ctx context.Context, installedApp *appStoreBean.InstallAppVersionDTO, version int32) (*openapi.HelmAppDeploymentManifestDetail, error)
5353
UpgradeDeployment(installAppVersionRequest *appStoreBean.InstallAppVersionDTO, ChartGitAttribute *commonBean.ChartGitAttribute, installedAppVersionHistoryId int, ctx context.Context) error
54+
GetAcdAppGitOpsRepoURL(appName string, environmentName string) (string, error)
5455
}
5556

5657
type EAModeDeploymentServiceImpl struct {
@@ -441,3 +442,6 @@ func (impl *EAModeDeploymentServiceImpl) GetChartBytesForParticularDeployment(in
441442
func (impl *EAModeDeploymentServiceImpl) DeleteACD(acdAppName string, ctx context.Context, isNonCascade bool) error {
442443
return errors.New("this is not implemented")
443444
}
445+
func (impl *EAModeDeploymentServiceImpl) GetAcdAppGitOpsRepoURL(appName string, environmentName string) (string, error) {
446+
return "", errors.New("this is not implemented")
447+
}

0 commit comments

Comments
 (0)