mirror of
https://github.com/juanfont/headscale.git
synced 2025-02-01 00:20:14 +01:00
Show online in CLI & API when isOnline() reports so
This commit is contained in:
parent
4532915be1
commit
000c02dad9
@ -513,9 +513,7 @@ func nodesToPtables(
|
|||||||
}
|
}
|
||||||
|
|
||||||
var online string
|
var online string
|
||||||
if lastSeen.After(
|
if machine.Online {
|
||||||
time.Now().Add(-5 * time.Minute),
|
|
||||||
) { // TODO: Find a better way to reliably show if online
|
|
||||||
online = pterm.LightGreen("online")
|
online = pterm.LightGreen("online")
|
||||||
} else {
|
} else {
|
||||||
online = pterm.LightRed("offline")
|
online = pterm.LightRed("offline")
|
||||||
|
@ -767,6 +767,7 @@ func (machine *Machine) toProto() *v1.Machine {
|
|||||||
GivenName: machine.GivenName,
|
GivenName: machine.GivenName,
|
||||||
Namespace: machine.Namespace.toProto(),
|
Namespace: machine.Namespace.toProto(),
|
||||||
ForcedTags: machine.ForcedTags,
|
ForcedTags: machine.ForcedTags,
|
||||||
|
Online: machine.isOnline(),
|
||||||
|
|
||||||
// TODO(kradalby): Implement register method enum converter
|
// TODO(kradalby): Implement register method enum converter
|
||||||
// RegisterMethod: ,
|
// RegisterMethod: ,
|
||||||
|
Loading…
Reference in New Issue
Block a user