Skip to content

Commit

Permalink
naming/refractor
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscavnicky committed Jun 27, 2024
1 parent d099b3b commit f6de552
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ dependencies {
implementation("com.google.code.gson:gson:2.10.1")

// Apache Commons Compress
implementation("org.apache.commons:commons-compress:${property("commonsCompress")}")
implementation("org.apache.commons:commons-compress:${property("commonsCompressVersion")}")

// Unit Test
testImplementation(kotlin("test"))
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ springAddonsVersion=7.6.12
hibernateVersion=6.4.4.Final
hibernateTypesVersion=3.7.3
commonsIOVersion=2.11.0
commonsCompress=1.26.2
commonsCompressVersion=1.26.2
rsqlParserVersion=2.1.0
jacksonVersion=2.13.3
flywayVersion=7.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ class DataStreamController(
return dataStreamService.core.invoke(request).let { ResponseEntity.ok(it) }
}

// New endpoint specifically for AppendToDataStreams with zip file
@PostMapping(value = [DATA_STREAM_SERVICE_ZIP], consumes = ["multipart/form-data"])
@Operation(tags = ["dataStream/getDataStream.json"])
suspend fun invoke(
@Operation(tags = ["dataStream/getDataStream.zip"])
suspend fun processToInvoke(
@RequestBody zipFile: MultipartFile,
): ResponseEntity<Any> {
LOGGER.info("Start POST: $DATA_STREAM_SERVICE_ZIP")
Expand Down

0 comments on commit f6de552

Please sign in to comment.