Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 22, 2019 10:26
Show Gist options
  • Save ntakouris/2cecb17f5e073cea1de7b47285235a4c to your computer and use it in GitHub Desktop.
Save ntakouris/2cecb17f5e073cea1de7b47285235a4c to your computer and use it in GitHub Desktop.
namespace Tweetbook.Extensions
{
public static class GeneralExtensions
{
public static string GetUserId(this HttpContext httpContext)
{
if (httpContext.User == null)
{
return string.Empty;
}
return httpContext.User.Claims.Single(x => x.Type == "id").Value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment