fix(admin): ensure CheckAuth is enabled for route verification

Enable CheckAuth in the admin route configuration which was previously
commented out, ensuring that node permissions are validated as expected.
This commit is contained in:
wolfcode
2024-07-19 21:14:28 +08:00
parent a2942e5589
commit efbf557cc0

View File

@@ -20,9 +20,9 @@ return [
CheckInstall::class,
// 检测是否登录
CheckLogin::class,
// 验证节点权限
CheckAuth::class,
// 操作日志
SystemLog::class,
// 验证节点权限
CheckAuth::class,
],
];