diff --git a/Project-Unite/ACL.cs b/Project-Unite/ACL.cs index 97131b0..841aeb9 100644 --- a/Project-Unite/ACL.cs +++ b/Project-Unite/ACL.cs @@ -33,7 +33,7 @@ public static IHtmlString NewestUser(this HtmlHelper hpr) return hpr.Raw(" Our newest user, " + user.DisplayName + ""); } - public static IHtmlString GetLatestNotifications(this HtmlHelper hpr, string userName) + public static IHtmlString GetLatestUnread(this HtmlHelper hpr, string userName) { var db = new ApplicationDbContext(); var user = db.Users.FirstOrDefault(x => x.UserName == userName);