Skip to content

Commit

Permalink
Remove genezioToken from codebase
Browse files Browse the repository at this point in the history
Signed-off-by: Andreia Ocanoaia <andreia.ocanoaia@gmail.com>
  • Loading branch information
andreia-oca committed Aug 14, 2023
1 parent 14b3801 commit 963be11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core-deployment/src/routes/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const router = express.Router();
const exec = Exec.default;

router.post("/", async (req, res) => {
const { classInfo, functionsList, genezioToken } = req.body;
const { classInfo, functionsList } = req.body;

if (!classInfo || !functionsList || !genezioToken) {
if (!classInfo || !functionsList ) {
return res.status(400).json({
message: "Missing required parameters",
});
Expand Down

0 comments on commit 963be11

Please sign in to comment.