feature/implement-external-login-api #30

Merged
kasun merged 32 commits from feature/implement-external-login-api into main 2026-04-09 21:21:58 +02:00
6 changed files with 5 additions and 9 deletions
Showing only changes of commit 6267e18478 - Show all commits
@@ -9,5 +9,4 @@ public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@@ -3,5 +3,4 @@ package com.vaessl.app.dto;
import java.time.Instant;
public record ConnectionResponse(String token, String attachmentToken, Instant expiresAt) {
}
@@ -36,5 +36,4 @@ public class GlobalExceptionHandler {
.forStatusAndDetail(e.getStatusCode(),
"The external app returned a server error: " + e.getStatusText());
}
}
@@ -24,6 +24,5 @@ class ApplicationTests {
try (Connection connection = dataSource.getConnection()) {
assertThat(connection.getMetaData().getURL()).contains("vaessl_test");
}
}
}