Skip to content

Commit af626ac

Browse files
shaun-nxsjberman
andauthored
Update docs/proposals/authentication-filter.md
Co-authored-by: Saylor Berman <s.berman@f5.com>
1 parent d5a68bd commit af626ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/proposals/authentication-filter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,14 @@ type JWKSCache struct {
300300
UseTempPath *bool `json:"useTempPath,omitempty"`
301301
}
302302

303-
// TokenType represents NGINX auth_jwt_type.
303+
// JWTType represents NGINX auth_jwt_type.
304304
// +kubebuilder:validation:Enum=signed;encrypted;nested
305-
type TokenType string
305+
type JWTType string
306306

307307
const (
308-
TokenTypeSigned TokenType = "signed"
309-
TokenTypeEncrypted TokenType = "encrypted"
310-
TokenTypeNested TokenType = "nested"
308+
JWTTypeSigned JWTType = "signed"
309+
JWTTypeEncrypted JWTType = "encrypted"
310+
JWTTypeNested JWTType = "nested"
311311
)
312312

313313
// AuthScheme enumerates supported WWW-Authenticate schemes.

0 commit comments

Comments
 (0)