43bbcece7a
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 <noreply@anthropic.com>
11 lines
229 B
Java
11 lines
229 B
Java
package com.vaessl.app.dto;
|
|
|
|
import java.time.Instant;
|
|
|
|
public record ConnectionStatusResponse(
|
|
String serviceType,
|
|
String appUrl,
|
|
String username,
|
|
Instant expiresAt,
|
|
boolean connected) {}
|