invite fix

This commit is contained in:
LukasNowy 2019-05-15 16:16:54 +02:00
parent 1d70d0af7a
commit aedd86054b
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ $(document).ready(function () {
// Initialize Firebase
var config = {
apiKey: "AIzaSyCuvwf78cmSDoZ2yS4XxHZhnjUn7yIHYfw",

View File

@ -393,7 +393,7 @@ router.delete("/exitinvite", (req, res) => {
});
});
router.get("/invite/:invitelink", async (req, res) => {
router.get("/invite/:invitelink", (req, res) => {
res.status(200).render("invite");
});