feat: password-based registration and login (closes #1) #23

Merged
sneak merged 7 commits from feature/auth-passwords into main 2026-02-28 19:57:41 +01:00
Showing only changes of commit 52c85724a7 - Show all commits

View File

@@ -28,7 +28,7 @@ func (hdlr *Handlers) handleRegister(
) {
type registerRequest struct {
Nick string `json:"nick"`
Password string `json:"password"` //nolint:gosec // not a hardcoded secret
Password string `json:"password"`
}
var payload registerRequest
@@ -134,7 +134,7 @@ func (hdlr *Handlers) handleLogin(
) {
type loginRequest struct {
Nick string `json:"nick"`
Password string `json:"password"` //nolint:gosec // not a hardcoded secret
Password string `json:"password"`
}
var payload loginRequest