fix(tui): show push token and URL in detail panel
CI / test (pull_request) Successful in 2m35s
CI / lint (pull_request) Successful in 56s
CI / vulncheck (pull_request) Successful in 51s

Push monitors were missing token/endpoint info in the detail
view, making it impossible to know where to send heartbeats.
This commit is contained in:
2026-06-04 13:54:20 -04:00
parent 0b3b1c1ad8
commit c9353ac7cd
+4
View File
@@ -105,6 +105,10 @@ func (m Model) viewDetailPanel() string {
section("ENDPOINT")
row("Type", site.Type)
if site.Type == "push" && site.Token != "" {
row("Token", site.Token)
row("Push URL", "/api/push/"+site.Token)
}
if site.URL != "" {
row("URL", site.URL)
}