Rename server.address to my-server.address across properties files and LoginController for consistency and clarity.

This commit is contained in:
2025-07-30 00:18:22 +02:00
parent 871615702b
commit 3f76a98409
4 changed files with 4 additions and 4 deletions
@@ -36,7 +36,7 @@ public class LoginController implements LoginApi {
@Value("${login.secret:#{null}}")
private String loginSecret;
@Value("${server.address:#{null}}")
@Value("${my-server.address:#{null}}")
private String serverAddress;
private record CacheEntry(UUID uuid, Instant expiry) {}