chore(settings): update stale JWT_SECRET comment to APP_SECRET

This commit is contained in:
2026-04-26 13:57:19 +02:00
parent 38401ca802
commit bf4d8eb71d

View File

@@ -22,7 +22,7 @@ const (
// Sensitive values (API key) are stored AES-256-GCM encrypted.
type Store struct {
db *pgxpool.Pool
enc [32]byte // derived from JWT_SECRET
enc [32]byte // derived from APP_SECRET (was JWT_SECRET)
}
func NewStore(db *pgxpool.Pool, encKey [32]byte) *Store {