mirror of
https://github.com/coder/coder.git
synced 2025-07-21 01:28:49 +00:00
feat: audit login (#5925)
* added migration for api key resource * sort of working * auditing login * passing the correct user id * added and fixed tests * gen documentation * formatting and lint * lint * audit Github oauth and write tests * audit oauth and write tests * added defer fn for login error auditing * fixed test * feat: audit logout (#5998) * Update coderd/userauth.go Co-authored-by: Steven Masley <Emyrk@users.noreply.github.com> * fix test * bypassing diff generation if login/logout * lint --------- Co-authored-by: Steven Masley <Emyrk@users.noreply.github.com>
This commit is contained in:
@ -57,6 +57,8 @@ const (
|
||||
AuditActionDelete AuditAction = "delete"
|
||||
AuditActionStart AuditAction = "start"
|
||||
AuditActionStop AuditAction = "stop"
|
||||
AuditActionLogin AuditAction = "login"
|
||||
AuditActionLogout AuditAction = "logout"
|
||||
)
|
||||
|
||||
func (a AuditAction) Friendly() string {
|
||||
@ -71,6 +73,10 @@ func (a AuditAction) Friendly() string {
|
||||
return "started"
|
||||
case AuditActionStop:
|
||||
return "stopped"
|
||||
case AuditActionLogin:
|
||||
return "logged in"
|
||||
case AuditActionLogout:
|
||||
return "logged out"
|
||||
default:
|
||||
return "unknown"
|
||||
}
|
||||
|
Reference in New Issue
Block a user