blob: e3f0907055e9ccee887659b3c082e5a7417213d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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);
}
[Authorize]
public ActionResult ViewGroup(string id)
{
var db = new ApplicationDbContext();
var group = db.Groups.FirstOrDefault(x => x.Id == id);
if (group == null)
return new HttpStatusCodeResult(404);
return View(group);
}
}
}
|