A bug in authorization filter fixed. Modifying sample to use the fix.

A bug in authorization filter at a controller level failing to honor a [AllowAnonymous]
override at an action level was fixed. Modifying the sample to use the fix.
This commit is contained in:
Praburaj 2014-04-28 16:17:23 -07:00
parent e57ca9ab61
commit 80bccdd810
1 changed files with 1 additions and 2 deletions

View File

@ -9,8 +9,7 @@ using System.Threading.Tasks;
namespace MusicStore.Controllers
{
//https://github.com/aspnet/WebFx/issues/309
//[Authorize]
[Authorize]
public class AccountController : Controller
{
public UserManager<ApplicationUser> UserManager