summaryrefslogtreecommitdiff
path: root/Project-Unite/Controllers/GroupsController.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-07 09:19:55 -0400
committerMichael <[email protected]>2017-05-07 09:19:55 -0400
commit0ae47a126b1fb37ecbc80ecddd34a892fb6fd3b2 (patch)
tree1daa7ef50bdc8fd340566b8731eb5d9805cc2fa4 /Project-Unite/Controllers/GroupsController.cs
parent0cdba811a67c0fa8f9a68c8efa9280ea0cf22801 (diff)
downloadproject-unite-0ae47a126b1fb37ecbc80ecddd34a892fb6fd3b2.tar.gz
project-unite-0ae47a126b1fb37ecbc80ecddd34a892fb6fd3b2.tar.bz2
project-unite-0ae47a126b1fb37ecbc80ecddd34a892fb6fd3b2.zip
groups (formerly legions) index
Diffstat (limited to 'Project-Unite/Controllers/GroupsController.cs')
-rw-r--r--Project-Unite/Controllers/GroupsController.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Project-Unite/Controllers/GroupsController.cs b/Project-Unite/Controllers/GroupsController.cs
new file mode 100644
index 0000000..96aa401
--- /dev/null
+++ b/Project-Unite/Controllers/GroupsController.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 GroupsController : Controller
+ {
+ // GET: Groups
+ public ActionResult Index()
+ {
+ var db = new ApplicationDbContext();
+ return View(db.Groups);
+ }
+ }
+} \ No newline at end of file