Bug in filtering a claim of a specific type and value is now fixed.

Modifying the sample to use the fix.
This commit is contained in:
Praburaj 2014-04-28 16:12:08 -07:00
parent 4a26d740b5
commit 92904e0d9e
1 changed files with 1 additions and 5 deletions

View File

@ -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)