新增微信认证url

This commit is contained in:
JaguarJack
2020-06-26 22:08:27 +08:00
parent bcd7215333
commit 59774e7958

View File

@@ -23,8 +23,6 @@ $router->group('wechat', function () use ($router){
$router->resource('', '\catchAdmin\wechat\controller\Tags'); $router->resource('', '\catchAdmin\wechat\controller\Tags');
$router->get('sync', '\catchAdmin\wechat\controller\Tags@sync'); $router->get('sync', '\catchAdmin\wechat\controller\Tags@sync');
}); });
// 消息
$router->rule('message', '\catchAdmin\wechat\controller\Message@done', 'GET|POST');
// 微信菜单 // 微信菜单
$router->group('official/menus', function () use ($router){ $router->group('official/menus', function () use ($router){
$router->resource('', '\catchAdmin\wechat\controller\Menus'); $router->resource('', '\catchAdmin\wechat\controller\Menus');
@@ -32,3 +30,6 @@ $router->group('wechat', function () use ($router){
}); });
})->middleware('auth'); })->middleware('auth');
// 消息
$router->rule('wechat', '\catchAdmin\wechat\controller\Message@done', 'GET|POST');