You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
801 B
28 lines
801 B
1 year ago
|
using System.Collections.Generic;
|
||
|
using System.Security.Claims;
|
||
|
using Volo.Abp.DependencyInjection;
|
||
|
using Volo.Abp.Security.Claims;
|
||
|
|
||
|
namespace SettleAccount.Security;
|
||
|
|
||
|
[Dependency(ReplaceServices = true)]
|
||
|
public class FakeCurrentPrincipalAccessor : ThreadCurrentPrincipalAccessor
|
||
|
{
|
||
|
protected override ClaimsPrincipal GetClaimsPrincipal()
|
||
|
{
|
||
|
return GetPrincipal();
|
||
|
}
|
||
|
|
||
|
private ClaimsPrincipal GetPrincipal()
|
||
|
{
|
||
|
return new ClaimsPrincipal(new ClaimsIdentity(new List<Claim>
|
||
|
{
|
||
|
new Claim(AbpClaimTypes.UserId, "2e701e62-0953-4dd3-910b-dc6cc93ccb0d"),
|
||
|
new Claim(AbpClaimTypes.UserName, "admin"),
|
||
|
new Claim(AbpClaimTypes.Email, "admin@abp.io")
|
||
|
}
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|