Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Update OpenCV and allow credentials #238

Merged
merged 2 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<dependency>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>4.8.1-0</version>
<version>4.9.0-0</version>
</dependency>
<dependency>
<groupId>org.pf4j</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/fr/ziedelth/plugins/HTTP.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ fun Application.configureHTTP(isDebug: Boolean = false) {

install(CORS) {
HttpMethod.DefaultMethods.forEach { allowMethod(it) }
allowCredentials = true
allowHeader(HttpHeaders.Authorization)
anyHost()
}
Expand Down