replace encrypt/ decrypt with encrypted casting

This commit is contained in:
Boy132
2024-05-28 15:24:20 +02:00
parent 15caac51fb
commit 82fd547484
40 changed files with 45 additions and 79 deletions

View File

@@ -56,7 +56,7 @@ class NodeAutoDeployController extends Controller
return new JsonResponse([
'node' => $node->id,
'token' => $key->identifier . decrypt($key->token),
'token' => $key->identifier . $key->token,
]);
}
}