mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	add a 404 to games if it doesnt exist :3
This commit is contained in:
		
							parent
							
								
									d46e1dfb80
								
							
						
					
					
						commit
						8203cc8f81
					
				| @ -210,11 +210,20 @@ module.exports = function (app, config, renderTemplate) { | ||||
|     } | ||||
|   }); | ||||
| 
 | ||||
|   app.get("/game-hub", function (req, res) { | ||||
| app.get("/game-hub", function (req, res) { | ||||
|   var gameslist = ["pong", "tic-tac-toe", "sudoku", "snake"]; | ||||
|   var requestedGame = req.query.game; | ||||
| 
 | ||||
|   if (!requestedGame || !gameslist.includes(requestedGame)) { | ||||
|     return renderTemplate(res, req, "404.ejs"); | ||||
|   } | ||||
| 
 | ||||
|   renderTemplate(res, req, "gamehub.ejs", { | ||||
|       game: req.query.game, | ||||
|     }); | ||||
|     game: requestedGame, | ||||
|   }); | ||||
| }); | ||||
| 
 | ||||
| 
 | ||||
|   app.get("/static/:id", (req, res) => { | ||||
|     const id = req.params.id; | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 ashley
						ashley