store post subjects in db

This commit is contained in:
Michael 2017-05-17 16:24:58 -04:00
parent 588d21569c
commit 7e80b8ce18

View file

@ -213,6 +213,7 @@ public ActionResult PostReply(CreateTopicViewModel model)
var post = new ForumPost(); var post = new ForumPost();
post.AuthorId = User.Identity.GetUserId(); post.AuthorId = User.Identity.GetUserId();
post.Subject = model.Subject;
post.Body = model.Body; post.Body = model.Body;
post.Id = Guid.NewGuid().ToString(); post.Id = Guid.NewGuid().ToString();
post.Parent = topic.Id; post.Parent = topic.Id;