mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
make id nullable
This commit is contained in:
parent
737a18b592
commit
c63d62925b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public ActionResult Pong(int id = 1)
|
||||||
return View(model);
|
return View(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ActionResult Codepoints(int id)
|
public ActionResult Codepoints(int id = 1)
|
||||||
{
|
{
|
||||||
var db = new ApplicationDbContext();
|
var db = new ApplicationDbContext();
|
||||||
var highscores = new List<PongHighscore>();
|
var highscores = new List<PongHighscore>();
|
||||||
|
|
Loading…
Reference in a new issue