From 86d9468e45b58bb74627168f3015c63318069e69 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 16 Feb 2015 15:56:30 -0800 Subject: [PATCH] React to Authorize attribute moving --- samples/IdentitySample.Mvc/Controllers/AccountController.cs | 1 + samples/IdentitySample.Mvc/Controllers/ManageController.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/samples/IdentitySample.Mvc/Controllers/AccountController.cs b/samples/IdentitySample.Mvc/Controllers/AccountController.cs index 48ad2824f4..344341e979 100644 --- a/samples/IdentitySample.Mvc/Controllers/AccountController.cs +++ b/samples/IdentitySample.Mvc/Controllers/AccountController.cs @@ -5,6 +5,7 @@ using System.Threading.Tasks; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Mvc.Rendering; +using Microsoft.AspNet.Security; namespace IdentitySample.Models { diff --git a/samples/IdentitySample.Mvc/Controllers/ManageController.cs b/samples/IdentitySample.Mvc/Controllers/ManageController.cs index 5a4359dd11..b378f9a3a6 100644 --- a/samples/IdentitySample.Mvc/Controllers/ManageController.cs +++ b/samples/IdentitySample.Mvc/Controllers/ManageController.cs @@ -4,6 +4,7 @@ using System.Threading.Tasks; using IdentitySample.Models; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Security; namespace IdentitySample {