todo-app-backend/TodoApp/API/Controllers/UserProfilesController.cs
JakubWalkowiak bfb86df000 initial app
2022-02-08 22:12:18 +01:00

35 lines
901 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using TodoApp.API.Models;
namespace StudyLib.API.Controllers
{
[Route("api/[controller]")]
[Authorize]
[ApiController]
public class UserProfilesController : ControllerBase
{
private UserManager<User> _userManager;
public UserProfilesController(UserManager<User> userManager)
{
_userManager = userManager;
}
[HttpGet]
[Authorize]
public async Task<User> GetUserProfile()
{
string userId = User.Claims.First(c => c.Type == "UserID").Value;
var user = await _userManager.FindByIdAsync(userId);
return user;
}
}
}