Skip to content

Commit

Permalink
fix: V2 Export controller access with API key
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Jun 8, 2022
1 parent 0c66a1e commit b1c83b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import java.util.zip.ZipOutputStream

@RestController
@CrossOrigin(origins = ["*"])
@RequestMapping(value = ["/v2/projects/{projectId:[0-9]+}"])
@Tag(name = "Export controller")
@RequestMapping(value = ["/v2/projects/{projectId:[0-9]+}", "/v2/projects"])
@Tag(name = "Export")
@Suppress("SpringJavaInjectionPointsAutowiringInspection", "MVCPathVariableInspection")
class V2ExportController(
private val exportService: ExportService,
Expand Down

0 comments on commit b1c83b6

Please sign in to comment.