Skip to content

Commit

Permalink
chore: Git resource map conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhi-nair committed Dec 3, 2024
1 parent 28c7911 commit ca6935e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -27,7 +28,8 @@ public CommonGitFileUtils(
SessionUserService sessionUserService,
NewActionService newActionService,
ActionCollectionService actionCollectionService,
JsonSchemaVersions jsonSchemaVersions) {
JsonSchemaVersions jsonSchemaVersions,
ObjectMapper objectMapper) {
super(
applicationGitFileUtils,
fileUtils,
Expand All @@ -36,6 +38,7 @@ public CommonGitFileUtils(
sessionUserService,
newActionService,
actionCollectionService,
jsonSchemaVersions);
jsonSchemaVersions,
objectMapper);
}
}

0 comments on commit ca6935e

Please sign in to comment.