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>
18 lines
335 B
Java
18 lines
335 B
Java
package com.vaessl.app.connection;
|
|
|
|
public enum Endpoint {
|
|
HOMEBOX_LOGIN("/api/v1/users/login"),
|
|
LOGIN("/login"),
|
|
CONNECTION_STATUS("/connections/status");
|
|
|
|
private final String value;
|
|
|
|
private Endpoint(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
}
|