editorconfig

This commit is contained in:
2025-01-08 06:55:30 -07:00
parent 481d6fd48d
commit f75988fa3a
28 changed files with 1364 additions and 1339 deletions

View File

@@ -5,24 +5,24 @@ const { isAuthenticated } = require("../middleware/authCheck");
const validator = require("../validators");
router.get(
"/login",
login
"/login",
login
);
router.get(
"/callback",
callback
"/callback",
callback
);
router.get(
"/refresh",
isAuthenticated,
refresh
"/refresh",
isAuthenticated,
refresh
);
router.get(
"/logout",
logout
"/logout",
logout
);
module.exports = router;