Commit 56f97b7c authored by Zohten's avatar Zohten

removed comments

parent 28fb8d3f
...@@ -17,7 +17,6 @@ class ValidateTokenController extends Controller ...@@ -17,7 +17,6 @@ class ValidateTokenController extends Controller
{ {
try { try {
$jwt_token = $this->request->getJwtToken(); $jwt_token = $this->request->getJwtToken();
// echo "jwt = $jwt_token";
$decodedJWT = JWT::decode($jwt_token, JWT_BACKEND_KEY, array('HS256')); $decodedJWT = JWT::decode($jwt_token, JWT_BACKEND_KEY, array('HS256'));
$jsonResult = json_encode(array( $jsonResult = json_encode(array(
"message" => "Access granted.", "message" => "Access granted.",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment