From 71a4b6f6b720c94470a6d102d4564fdd34c280fa Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 16 Feb 2015 16:08:32 -0800 Subject: [PATCH] Fully qualify attribute --- .../Areas/Admin/Controllers/StoreManagerController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs b/src/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs index a1f50b6c51..32235b741b 100644 --- a/src/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs +++ b/src/MusicStore/Areas/Admin/Controllers/StoreManagerController.cs @@ -16,7 +16,7 @@ using MusicStore.ViewModels; namespace MusicStore.Areas.Admin.Controllers { [Area("Admin")] - [Authorize("ManageStore")] + [Microsoft.AspNet.Security.Authorize("ManageStore")] public class StoreManagerController : Controller { private IConnectionManager _connectionManager;