This commit is contained in:
Paul Schneider 2018-07-22 15:18:30 +01:00
commit a5dfc55d5e
11 changed files with 527 additions and 14 deletions

View file

@ -115,7 +115,7 @@ namespace Yavsc.Controllers
{
return HttpNotFound();
}
ViewData["OwnerId"] = new SelectList(_context.ApplicationUser, "Id", "Owner", gitRepositoryReference.OwnerId);
ViewBag.OwnerId = new SelectList(_context.ApplicationUser, "Id", "Owner", gitRepositoryReference.OwnerId);
return View(gitRepositoryReference);
}