12 lines
268 B
C#
12 lines
268 B
C#
using Hutopy.Application.Common.Interfaces;
|
|
using Hutopy.Web.Common;
|
|
|
|
namespace Hutopy.Web.Services;
|
|
|
|
public class CurrentUser(
|
|
IHttpContextAccessor httpContextAccessor)
|
|
: IUser
|
|
{
|
|
public Guid? Id => httpContextAccessor.HttpContext?.User.GetUserId();
|
|
}
|