diff options
| author | Michael <[email protected]> | 2017-04-05 19:37:16 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-05 19:37:21 -0400 |
| commit | 123a3341dc3490b2157de858345f5a7b13821682 (patch) | |
| tree | 97127eb6ce1b478328fba04c78c0e4ad0fc52a60 /Project-Unite/Controllers/DeveloperController.cs | |
| parent | 4c91bc2e354f48664c331fb1b566023e1bc269f0 (diff) | |
| download | project-unite-123a3341dc3490b2157de858345f5a7b13821682.tar.gz project-unite-123a3341dc3490b2157de858345f5a7b13821682.tar.bz2 project-unite-123a3341dc3490b2157de858345f5a7b13821682.zip | |
Releases page
Diffstat (limited to 'Project-Unite/Controllers/DeveloperController.cs')
| -rw-r--r-- | Project-Unite/Controllers/DeveloperController.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Project-Unite/Controllers/DeveloperController.cs b/Project-Unite/Controllers/DeveloperController.cs index 301038d..b380acb 100644 --- a/Project-Unite/Controllers/DeveloperController.cs +++ b/Project-Unite/Controllers/DeveloperController.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; +using Project_Unite.Models; namespace Project_Unite.Controllers { @@ -15,5 +16,11 @@ namespace Project_Unite.Controllers ViewBag.Developer = true; return View(); } + + public ActionResult Releases() + { + var db = new ApplicationDbContext(); + return View(db.Downloads); + } } }
\ No newline at end of file |
