禁用权限检测

This commit is contained in:
候学杰 2018-02-07 21:24:11 +08:00
parent 34a71b0664
commit b99be29a9d

View File

@ -91,18 +91,19 @@ class Authenticate
// } // }
// } // }
if (in_array($path, $match)) { // if (in_array($path, $match)) {
return $next($request); // return $next($request);
} // }
// if ($request->isXmlHttpRequest()) {
// return response()->json([
// 'code' => 403,
// 'msg' => '无权访问,请联系管理员授权',
// 'data' => null,
// ]);
// }
// api_abort(403, '无权访问,请联系管理员授权');
if ($request->isXmlHttpRequest()) {
return response()->json([
'code' => 403,
'msg' => '无权访问,请联系管理员授权',
'data' => null,
]);
}
api_abort(403, '无权访问,请联系管理员授权');
return $next($request); return $next($request);
} }
} }