diff options
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 |
