Profile on sidebar

This commit is contained in:
2025-09-04 22:05:59 +03:30
parent e3df396758
commit 9e3b816ef2
15 changed files with 173 additions and 13 deletions
@@ -1141,4 +1141,12 @@ public class MainController {
getChatPageController().showChat(entry);
}
}
public void refreshSidebarUserFromSession() {
if (sidebarController != null && Session.currentUser != null) {
Platform.runLater(() -> sidebarController.setUserFromSession(Session.currentUser));
}
}
}