extending session whenever tags are queries – should be the case on most pages

This commit is contained in:
2025-07-28 16:32:07 +02:00
parent 4e9f15c6a3
commit 378ef640d9
3 changed files with 11 additions and 7 deletions

View File

@@ -15,4 +15,5 @@ public interface UserService {
Optional<UmbrellaUser> loadUser(Optional<Token> sessionToken) throws UmbrellaException;
Optional<UmbrellaUser> loadUser(HttpExchange ex) throws UmbrellaException;
PostBox postBox();
Optional<UmbrellaUser> refreshSession(HttpExchange ex);
}