Backend: adds JDBC session support, login/status/logout endpoints, and new DTOs (AuthResponse, ConnectionStatusResponse, LoginResult). Frontend replaces the Vite boilerplate with a Dashboard, ServiceCard, and ConnectModal backed by a typed API client. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
6 lines
125 B
Java
6 lines
125 B
Java
package com.vaessl.app.dto;
|
|
|
|
import java.time.Instant;
|
|
|
|
public record AuthResponse(String serviceType, Instant expiresAt) {}
|