Compare commits

...

3 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
plugins { plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0" id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
} }
rootProject.name = "Backend_API_DSU" rootProject.name = "Backend_API"

View File

@ -30,7 +30,7 @@ fun Route.auth(accountsRepository: AccountsRepositoryImpl, parametriRepository:
logger.info("param: " + logger.info("param: " +
receivedResponse.param); receivedResponse.param);
// Decodifica la stringa da Base64 // Decodifica la stringa da Base64 a oggetto Credentials
val decodedBytes = Base64.getDecoder().decode(receivedResponse.param) val decodedBytes = Base64.getDecoder().decode(receivedResponse.param)
val decodedString = String(decodedBytes) val decodedString = String(decodedBytes)
val credentials = Json.decodeFromString<Credentials>(decodedString) val credentials = Json.decodeFromString<Credentials>(decodedString)