We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09dfd9a commit dd100f6Copy full SHA for dd100f6
1 file changed
src/Web/WebMVC/Controllers/AccountController.cs
@@ -1,8 +1,6 @@
1
using System.Security.Claims;
2
using Microsoft.AspNetCore.Authorization;
3
using Microsoft.AspNetCore.Mvc;
4
-using Microsoft.eShopOnContainers.WebMVC.ViewModels;
5
-using Microsoft.eShopOnContainers.WebMVC.Services;
6
using Microsoft.AspNetCore.Http.Authentication;
7
using System.Threading.Tasks;
8
using Microsoft.AspNetCore.Authentication;
@@ -12,10 +10,6 @@ namespace Microsoft.eShopOnContainers.WebMVC.Controllers
12
10
[Authorize]
13
11
public class AccountController : Controller
14
{
15
- private readonly IIdentityParser<ApplicationUser> _identityParser;
16
- public AccountController(IIdentityParser<ApplicationUser> identityParser) =>
17
- _identityParser = identityParser;
18
-
19
public ActionResult Index() => View();
20
21
0 commit comments