From 80bccdd8103e5c44fdcc60d2585a1f797952dc28 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Mon, 28 Apr 2014 16:17:23 -0700 Subject: [PATCH] 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. --- src/MusicStore/Controllers/AccountController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/MusicStore/Controllers/AccountController.cs b/src/MusicStore/Controllers/AccountController.cs index 0457bfe232..389adeca79 100644 --- a/src/MusicStore/Controllers/AccountController.cs +++ b/src/MusicStore/Controllers/AccountController.cs @@ -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 UserManager