diff --git a/features/auth/handlers.go b/features/auth/handlers.go index e39e59e..dc34675 100644 --- a/features/auth/handlers.go +++ b/features/auth/handlers.go @@ -15,12 +15,12 @@ import ( type LoginSignals struct { Username string `json:"username"` - Password string `json:"password"` + Password string `json:"password"` //nolint:gosec // form input, not stored } type RegisterSignals struct { Username string `json:"username"` - Password string `json:"password"` + Password string `json:"password"` //nolint:gosec // form input, not stored Confirm string `json:"confirm"` }