summaryrefslogtreecommitdiff
path: root/Project-Unite/Controllers/BugsController.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-14 14:22:51 -0400
committerMichael <[email protected]>2017-04-14 14:22:51 -0400
commit52245ffb86b6d1585c4e4c82e6bf1b3c03c8846a (patch)
treeab8d55e8f76bdfa1f34705b60286a5da1a77bcc2 /Project-Unite/Controllers/BugsController.cs
parentc5506fc9f9efcf960cced980230d6c038b226f1a (diff)
downloadproject-unite-52245ffb86b6d1585c4e4c82e6bf1b3c03c8846a.tar.gz
project-unite-52245ffb86b6d1585c4e4c82e6bf1b3c03c8846a.tar.bz2
project-unite-52245ffb86b6d1585c4e4c82e6bf1b3c03c8846a.zip
Bugtracker work
Diffstat (limited to 'Project-Unite/Controllers/BugsController.cs')
-rw-r--r--Project-Unite/Controllers/BugsController.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Project-Unite/Controllers/BugsController.cs b/Project-Unite/Controllers/BugsController.cs
new file mode 100644
index 0000000..5345239
--- /dev/null
+++ b/Project-Unite/Controllers/BugsController.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Mvc;
+using Project_Unite.Models;
+
+namespace Project_Unite.Controllers
+{
+ public class BugsController : Controller
+ {
+ // GET: Bugs
+ public ActionResult Index()
+ {
+ var db = new ApplicationDbContext();
+ return View(db.BugTags);
+ }
+ }
+} \ No newline at end of file