Skip to content

Commit

Permalink
place upload reroute
Browse files Browse the repository at this point in the history
  • Loading branch information
singharaj-usai committed Oct 5, 2024
1 parent ff072ec commit 40c7260
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ <h3 class="panel-title">Upload Game</h3>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
<script src="./js/theme-loader.js"></script>
<script src="./js/auth/auth.js"></script>
<script src="./js/upload.js"></script>
<script src="./js/particles-config.js"></script>
<script src="/js/theme-loader.js"></script>
<script src="/js/auth/auth.js"></script>
<script src="/js/upload.js"></script>
<script src="/js/particles-config.js"></script>

</body>
</html>
2 changes: 1 addition & 1 deletion server/functions/api/routes/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ router.get("/my/messages", (req, res) => sendHtmlFile(res, "pages/my/messages.ht
router.get("/messages/compose", (req, res) => sendHtmlFile(res, "pages/my/compose/compose.html"));

// Upload page
router.get("/upload", (req, res) => sendHtmlFile(res, "pages/upload/upload.html"));
router.get("/upload/place", (req, res) => sendHtmlFile(res, "pages/upload/place.html"));

// Games pages
router.get("/games", (req, res) => sendHtmlFile(res, "pages/games/games.html"));
Expand Down

0 comments on commit 40c7260

Please sign in to comment.