Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created November 23, 2020 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/1a44fbc37bdda6321fdd562c25ec3a41 to your computer and use it in GitHub Desktop.
Save xximjasonxx/1a44fbc37bdda6321fdd562c25ec3a41 to your computer and use it in GitHub Desktop.
[Route("api/user")]
[ApiController]
public class UserController : ControllerBase
{
private readonly IContextReaderService _contextService;
public UserController(IContextReaderService contextService)
{
_contextService = contextService;
}
[HttpGet]
public IActionResult GetUser()
{
return Ok(_contextService.Username);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment