mirror of
https://github.com/labstack/echo.git
synced 2025-04-04 22:14:24 +02:00
parent
65b60a4ed2
commit
e980bd9055
@ -26,7 +26,7 @@
|
|||||||
- Test Suite: https://github.com/vishr/web-framework-benchmark
|
- Test Suite: https://github.com/vishr/web-framework-benchmark
|
||||||
- Date: 4/4/2016
|
- Date: 4/4/2016
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
|
@ -76,6 +76,7 @@ var (
|
|||||||
func JWT(key []byte) echo.MiddlewareFunc {
|
func JWT(key []byte) echo.MiddlewareFunc {
|
||||||
c := DefaultJWTConfig
|
c := DefaultJWTConfig
|
||||||
c.SigningKey = key
|
c.SigningKey = key
|
||||||
|
c.Claims = jwt.MapClaims{}
|
||||||
return JWTWithConfig(c)
|
return JWTWithConfig(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +97,7 @@ func JWTWithConfig(config JWTConfig) echo.MiddlewareFunc {
|
|||||||
config.ContextKey = DefaultJWTConfig.ContextKey
|
config.ContextKey = DefaultJWTConfig.ContextKey
|
||||||
}
|
}
|
||||||
if config.Claims == nil {
|
if config.Claims == nil {
|
||||||
config.Claims = DefaultJWTConfig.Claims
|
config.Claims = jwt.MapClaims{}
|
||||||
}
|
}
|
||||||
if config.TokenLookup == "" {
|
if config.TokenLookup == "" {
|
||||||
config.TokenLookup = DefaultJWTConfig.TokenLookup
|
config.TokenLookup = DefaultJWTConfig.TokenLookup
|
||||||
|
Loading…
x
Reference in New Issue
Block a user