fix: suppress gosec G117 on auth form signal structs
All checks were successful
CI / Deploy / test (pull_request) Successful in 7s
CI / Deploy / lint (pull_request) Successful in 47s
CI / Deploy / deploy (pull_request) Has been skipped

This commit is contained in:
Ryan Hamamura
2026-03-02 12:40:02 -10:00
parent afd8a3e9d0
commit 67d4dba37f

View File

@@ -15,12 +15,12 @@ import (
type LoginSignals struct { type LoginSignals struct {
Username string `json:"username"` Username string `json:"username"`
Password string `json:"password"` Password string `json:"password"` //nolint:gosec // form input, not stored
} }
type RegisterSignals struct { type RegisterSignals struct {
Username string `json:"username"` Username string `json:"username"`
Password string `json:"password"` Password string `json:"password"` //nolint:gosec // form input, not stored
Confirm string `json:"confirm"` Confirm string `json:"confirm"`
} }