From ca6935efff07e9a79afbe63d4735bc10f8df370f Mon Sep 17 00:00:00 2001 From: Nidhi Nair Date: Tue, 3 Dec 2024 20:30:41 +0530 Subject: [PATCH] chore: Git resource map conversions --- .../com/appsmith/server/helpers/CommonGitFileUtils.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CommonGitFileUtils.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CommonGitFileUtils.java index ecb77dd87118..90c512060d3c 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CommonGitFileUtils.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CommonGitFileUtils.java @@ -10,6 +10,7 @@ import com.appsmith.server.newactions.base.NewActionService; import com.appsmith.server.services.AnalyticsService; import com.appsmith.server.services.SessionUserService; +import com.fasterxml.jackson.databind.ObjectMapper; import lombok.extern.slf4j.Slf4j; import org.springframework.context.annotation.Import; import org.springframework.stereotype.Component; @@ -27,7 +28,8 @@ public CommonGitFileUtils( SessionUserService sessionUserService, NewActionService newActionService, ActionCollectionService actionCollectionService, - JsonSchemaVersions jsonSchemaVersions) { + JsonSchemaVersions jsonSchemaVersions, + ObjectMapper objectMapper) { super( applicationGitFileUtils, fileUtils, @@ -36,6 +38,7 @@ public CommonGitFileUtils( sessionUserService, newActionService, actionCollectionService, - jsonSchemaVersions); + jsonSchemaVersions, + objectMapper); } }