Updated Tables
This commit is contained in:
parent
1b650070d7
commit
7db1a3456b
13 changed files with 192 additions and 9 deletions
|
@ -1,9 +1,18 @@
|
|||
import express from "express";
|
||||
import { Router, json as jsonMiddleware } from "express";
|
||||
import { getCurrentlyFailing } from "../database/queries/test_results.js";
|
||||
const router = express.Router();
|
||||
const router = Router();
|
||||
|
||||
// Apply Middlewares
|
||||
router.use(jsonMiddleware());
|
||||
|
||||
// Get Routes
|
||||
router.get("/failing", (req, res) => {
|
||||
res.send([]);
|
||||
});
|
||||
|
||||
// Post Routes
|
||||
router.post("/history", (req,res)=>{
|
||||
res.send([]);
|
||||
});
|
||||
|
||||
export default router;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue