starting a tagger component

This commit is contained in:
Paul Schneider 2017-10-02 13:15:01 +02:00
commit 22e5259b91
9 changed files with 291 additions and 3 deletions

View file

@ -106,7 +106,9 @@ namespace Yavsc.Controllers
Blog blog = _context.Blogspot.Include(
b => b.Author
).Include(p => p.ACL).Single(m => m.Id == id);
)
.Include(p=>p.Tags)
.Include(p => p.ACL).Single(m => m.Id == id);
if (blog == null)
{
return HttpNotFound();