fixed code formatting
This commit is contained in:
parent
22b7f70433
commit
b6393a7bbf
1 changed files with 3 additions and 2 deletions
|
|
@ -6,7 +6,6 @@ require("dotenv").config();
|
||||||
const DB_ASSIGNMENT_SERVICE_URL = process.env.DB_ASSIGNMENT_SERVICE_URL;
|
const DB_ASSIGNMENT_SERVICE_URL = process.env.DB_ASSIGNMENT_SERVICE_URL;
|
||||||
const DEPLOY_API_URL = process.env.DEPLOY_API_URL || "http://localhost:3600";
|
const DEPLOY_API_URL = process.env.DEPLOY_API_URL || "http://localhost:3600";
|
||||||
|
|
||||||
|
|
||||||
studentRouter.post("/save", async (req, res) => {
|
studentRouter.post("/save", async (req, res) => {
|
||||||
//get the app name and code and save the latest jupiter file in s3 bucket
|
//get the app name and code and save the latest jupiter file in s3 bucket
|
||||||
const { appName ,code } = req.body;
|
const { appName ,code } = req.body;
|
||||||
|
|
@ -62,7 +61,9 @@ studentRouter.post("/save", async (req, res) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
studentRouter.post("/deploy", (req, res) => {});
|
studentRouter.post("/deploy", (req, res) => {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
studentRouter.get("/assignment/:qrnum", (req, res) => {
|
studentRouter.get("/assignment/:qrnum", (req, res) => {
|
||||||
const qrnum = req.params.qrnum;
|
const qrnum = req.params.qrnum;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue