2
0
forked from maiora/backend-api

Compare commits

..

2 Commits

Author SHA1 Message Date
a8f31470de Merge remote-tracking branch 'upstream/dev' into dev 2025-03-27 17:09:15 +01:00
7b8eaa6261 rimozione plugin CallLogging
non utilizzato (usiamo logback)
2025-03-27 17:04:17 +01:00
3 changed files with 1 additions and 4 deletions

View File

@ -33,7 +33,6 @@ dependencies {
//implementation("org.postgresql:postgresql:42.7.2")
implementation("com.microsoft.sqlserver:mssql-jdbc:11.2.0.jre18")
implementation("com.oracle.database.jdbc:ojdbc8:19.8.0.0")
implementation("io.ktor:ktor-server-call-logging:$ktor_version")
implementation("io.ktor:ktor-server-cors:$ktor_version")
implementation("org.jetbrains.exposed:exposed-jdbc:0.55.0")
implementation("org.jetbrains.exposed:exposed-dao:$exposed_version")

View File

@ -7,7 +7,6 @@ import io.ktor.server.application.*
import io.ktor.server.config.*
import io.ktor.server.engine.*
import io.ktor.server.netty.*
import io.ktor.server.plugins.callloging.*
import io.ktor.server.plugins.cors.routing.*
import java.io.FileInputStream
import java.util.*
@ -31,7 +30,6 @@ fun Application.module(configFile: Properties) {
configureRouting()
configureSerialization()
install(CallLogging)
install(CORS){
anyHost()
allowSameOrigin = true

View File

@ -31,7 +31,7 @@ fun Route.auth(accountsRepository: AccountsRepositoryImpl) {
logger.info(
"param: " +
receivedResponse.param
);
)
// Decodifica la stringa da Base64 a oggetto Credentials
val decodedBytes = Base64.getDecoder().decode(receivedResponse.param)