Skip to content

Commit

Permalink
update jwt.php
Browse files Browse the repository at this point in the history
  • Loading branch information
liyuzhao authored and liyuzhao committed Feb 16, 2022
1 parent 75c2c01 commit b914ee9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion publish/jwt.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

return [
/**
* 不需要检查的路由,如果使用jwt提供的默认中间件,可以对某些不用做检验的路由进行配置,例如登录、退出等
* 不需要检查的路由,如果使用jwt提供的默认中间件,可以对某些不用做检验的路由进行配置,例如登录等
* 具体的逻辑可以效仿JWT提供的默认中间件
* [
* ["GET", "/index/test"],
Expand All @@ -13,6 +13,7 @@
* 第一个填写请求方法('**'代表支持所有的请求方法),第二个填写路由路径('/**'代表支持所有的路径)
* 如果数组中存在["**", "/**"],则默认所有的请求路由都不做jwt token的校验,直接放行,如果no_check_route为一个空数组,则
* 所有的请求路由都需要做jwt token校验
* 路由路径支持正则的写法
*/
'no_check_route' => [
["**", "/**"],
Expand Down

0 comments on commit b914ee9

Please sign in to comment.