More work on auth system

This commit is contained in:
Melody Becker 2025-03-31 08:07:16 +02:00
parent 2afb14c4b3
commit 7d385e48de
Signed by: mstar
SSH key fingerprint: SHA256:vkXfS9FG2pVNVfvDrzd1VW9n8VJzqqdKQGljxxX8uK8
4 changed files with 37 additions and 5 deletions

View file

@ -9,4 +9,6 @@ var (
ErrUnsupportedAuthMethod = errors.New("authentication method not supported for this user")
ErrInvalidCombination = errors.New("invalid account and token combination")
ErrProcessTimeout = errors.New("authentication process timed out")
// A user may not login, for whatever reason
ErrCantLogin = errors.New("user can't login")
)