Add page route for adding new game

blazor
Pat Hartl 2023-03-03 17:42:28 -06:00
parent 6bc0237e51
commit ee1dc03032
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,5 @@
@page "/Games/{id:guid}/Edit"
@page "/Games/Add"
@using LANCommander.Models;
@using System.IO.Compression;
@attribute [Authorize(Roles = "Administrator")]
@ -145,7 +146,11 @@
protected override async Task OnInitializedAsync()
{
Game = await GameService.Get(Id);
if (Id == Guid.Empty)
Game = new Game();
else
Game = await GameService.Get(Id);
Companies = CompanyService.Get();
Genres = GenreService.Get();
Tags = TagService.Get();