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