mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-29 06:33:58 +08:00
添加sqlsugar类
This commit is contained in:
@@ -20,9 +20,11 @@ namespace ThingsGateway.Admin.Application;
|
||||
public class AppService : IAppService
|
||||
{
|
||||
private readonly IUserAgentService UserAgentService;
|
||||
public AppService(IUserAgentService userAgentService)
|
||||
private readonly IClaimsPrincipalService ClaimsPrincipalService;
|
||||
public AppService(IUserAgentService userAgentService, IClaimsPrincipalService claimsPrincipalService)
|
||||
{
|
||||
UserAgentService = userAgentService;
|
||||
ClaimsPrincipalService = claimsPrincipalService;
|
||||
}
|
||||
public string GetReturnUrl(string returnUrl)
|
||||
{
|
||||
@@ -70,7 +72,7 @@ public class AppService : IAppService
|
||||
ExpiresUtc = diffTime,
|
||||
}).ConfigureAwait(false);
|
||||
}
|
||||
public ClaimsPrincipal? User => App.User;
|
||||
public ClaimsPrincipal? User => ClaimsPrincipalService.User;
|
||||
|
||||
public string? RemoteIpAddress => App.HttpContext?.GetRemoteIpAddressToIPv4();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user