2019-04-24 21:52:08 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// AuthenticationAttempt represent an authentication attempt.
|
2019-04-24 21:52:08 +00:00
|
|
|
type AuthenticationAttempt struct {
|
|
|
|
// The user who tried to authenticate.
|
|
|
|
Username string
|
|
|
|
// Successful true if the attempt was successful.
|
|
|
|
Successful bool
|
|
|
|
// The time of the attempt.
|
|
|
|
Time time.Time
|
|
|
|
}
|