Skip to content

Commit

Permalink
bump express.js version (softwerkskammer#1506)
Browse files Browse the repository at this point in the history
  • Loading branch information
leider authored Oct 27, 2024
1 parent ae7ec8d commit b49fc6c
Show file tree
Hide file tree
Showing 4 changed files with 241 additions and 109 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"adm-zip": "0.5.16",
"better-sqlite3": "11.0.0",
"better-sqlite3-session-store": "0.1.0",
"body-parser": "1.20.3",
"bootstrap": "5.3.3",
"bootstrap-datepicker": "1.10.0",
"bootstrap-markdown": "2.10.0",
Expand All @@ -32,8 +31,7 @@
"datatables.net": "2.1.8",
"datatables.net-bs5": "2.1.8",
"exifr": "7.1.3",
"express": "4.21.0",
"express-async-errors": "3.1.1",
"express": "5.0.1",
"express-session": "1.18.0",
"feed": "4.2.2",
"fullcalendar": "6.1.15",
Expand Down
1 change: 0 additions & 1 deletion softwerkskammer/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use strict";

const express = require("express");
require("express-async-errors");
const http = require("http");
const fs = require("fs");
const path = require("path");
Expand Down
2 changes: 1 addition & 1 deletion softwerkskammer/lib/waitinglist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ app.post("/remove", (req, res, next) => {
}
res.send("ok");
} catch (e) {
res.send(400);
res.sendStatus(400);
}
});

Expand Down
Loading

0 comments on commit b49fc6c

Please sign in to comment.