From 92904e0d9e45c2261f4a73475b9082927277ee9c Mon Sep 17 00:00:00 2001 From: Praburaj Date: Mon, 28 Apr 2014 16:12:08 -0700 Subject: [PATCH] Bug in filtering a claim of a specific type and value is now fixed. Modifying the sample to use the fix. --- src/MusicStore/Controllers/StoreManagerController.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/MusicStore/Controllers/StoreManagerController.cs b/src/MusicStore/Controllers/StoreManagerController.cs index 7bbbbdb1cb..8ee9353c8f 100644 --- a/src/MusicStore/Controllers/StoreManagerController.cs +++ b/src/MusicStore/Controllers/StoreManagerController.cs @@ -7,9 +7,7 @@ using System.Linq; namespace MusicStore.Controllers { - //https://github.com/aspnet/WebFx/issues/314 - //[Authorize("ManageStore", "Allowed")] - [Authorize] + [Authorize("ManageStore", "Allowed")] public class StoreManagerController : Controller { private readonly MusicStoreContext db; @@ -55,7 +53,6 @@ namespace MusicStore.Controllers return View(album); } - //Bug: SelectList still not available // // GET: /StoreManager/Create @@ -66,7 +63,6 @@ namespace MusicStore.Controllers return View(); } - //Bug: SelectList not available // POST: /StoreManager/Create [HttpPost] public IActionResult Create(Album album)