We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a68bd commit af626acCopy full SHA for af626ac
docs/proposals/authentication-filter.md
@@ -300,14 +300,14 @@ type JWKSCache struct {
300
UseTempPath *bool `json:"useTempPath,omitempty"`
301
}
302
303
-// TokenType represents NGINX auth_jwt_type.
+// JWTType represents NGINX auth_jwt_type.
304
// +kubebuilder:validation:Enum=signed;encrypted;nested
305
-type TokenType string
+type JWTType string
306
307
const (
308
- TokenTypeSigned TokenType = "signed"
309
- TokenTypeEncrypted TokenType = "encrypted"
310
- TokenTypeNested TokenType = "nested"
+ JWTTypeSigned JWTType = "signed"
+ JWTTypeEncrypted JWTType = "encrypted"
+ JWTTypeNested JWTType = "nested"
311
)
312
313
// AuthScheme enumerates supported WWW-Authenticate schemes.
0 commit comments