diff options
| author | Michael <[email protected]> | 2017-04-05 18:45:44 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-05 18:45:50 -0400 |
| commit | b7457b5d532506abdae0ab74bfdc45f0f955a526 (patch) | |
| tree | be88f8714a5dd404041814cf5e077ab66e7c7291 /Project-Unite/Controllers/DeveloperController.cs | |
| parent | d4c087381f96c56c628de84c725f7003c5119c2b (diff) | |
| download | project-unite-b7457b5d532506abdae0ab74bfdc45f0f955a526.tar.gz project-unite-b7457b5d532506abdae0ab74bfdc45f0f955a526.tar.bz2 project-unite-b7457b5d532506abdae0ab74bfdc45f0f955a526.zip | |
Add dev CP index.
Diffstat (limited to 'Project-Unite/Controllers/DeveloperController.cs')
| -rw-r--r-- | Project-Unite/Controllers/DeveloperController.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Project-Unite/Controllers/DeveloperController.cs b/Project-Unite/Controllers/DeveloperController.cs new file mode 100644 index 0000000..301038d --- /dev/null +++ b/Project-Unite/Controllers/DeveloperController.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Project_Unite.Controllers +{ + [Authorize] + public class DeveloperController : Controller + { + // GET: Developer + public ActionResult Index() + { + ViewBag.Developer = true; + return View(); + } + } +}
\ No newline at end of file |
