summaryrefslogtreecommitdiff
path: root/routes/games.js
diff options
context:
space:
mode:
authorJulien Dessaux2023-01-05 02:09:07 +0100
committerJulien Dessaux2023-01-05 02:09:07 +0100
commitd7ed1196bdd44d7734d41d91a5e72a71785e0a08 (patch)
treeaafae6571d5154dc5e9a061c8f54ca8e9b1287ad /routes/games.js
parentAdded more tests (diff)
downloadjeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.tar.gz
jeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.tar.bz2
jeux-de-mots-d7ed1196bdd44d7734d41d91a5e72a71785e0a08.zip
switched to single quotes string in eslint
Diffstat (limited to 'routes/games.js')
-rw-r--r--routes/games.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/routes/games.js b/routes/games.js
index 3a27cdb..5c4022c 100644
--- a/routes/games.js
+++ b/routes/games.js
@@ -1,18 +1,18 @@
-import express from "express";
+import express from 'express';
-import { gameId_get } from "../controllers/games/gameId.js";
-import { root_get, root_post } from "../controllers/games/root.js";
-import bodyParser from "../middlewares/formParser.js";
-import requireAuth from "../middlewares/requireAuth.js";
-import session from "../middlewares/sessions.js";
-import { checkName, checkUsername } from "../utils/checks.js";
+import { gameId_get } from '../controllers/games/gameId.js';
+import { root_get, root_post } from '../controllers/games/root.js';
+import bodyParser from '../middlewares/formParser.js';
+import requireAuth from '../middlewares/requireAuth.js';
+import session from '../middlewares/sessions.js';
+import { checkName, checkUsername } from '../utils/checks.js';
const router = express.Router();
router.use(session);
router.use(requireAuth);
-router.get("/", root_get);
-router.post("/", [bodyParser, checkName, checkUsername], root_post);
-router.get("/:gameId(\\d+)", gameId_get);
+router.get('/', root_get);
+router.post('/', [bodyParser, checkName, checkUsername], root_post);
+router.get('/:gameId(\\d+)', gameId_get);
export default router;