Add TTY login tracking with notification support

This commit is contained in:
2026-01-14 21:51:20 +05:00
parent 5e12b1f6ab
commit ccf228242d
12 changed files with 170 additions and 26 deletions

View File

@@ -4,9 +4,15 @@ type Login struct {
Enabled bool
Notify bool
SSH LoginSSH
Local LoginLocal
}
type LoginSSH struct {
Enabled bool
Notify bool
}
type LoginLocal struct {
Enabled bool
Notify bool
}