hi
This seems like a UI issue, I don't have any idea, you can continue debugging to see why the id is incorrect.
Thanks.
hi
You can get the MD file with your GitHub access token. That's no problem. But for images, you can't add the token to the request.
I think you can replace the URL of these images to redirect to your website instead of GitHub. On your website, you can pass the token to get the images from the Github private repo.
Thanks.
And make sure your websites are In-process-hosting
https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/in-process-hosting?view=aspnetcore-8.0
hi
Please update TestService as below:
namespace TestProject8.Test
{
public class TestService: ApplicationService, ITestService
{
private IdentityUserManager _userManager;
private IDistributedCache<AbpDynamicClaimCacheItem> _dynamicClaimCache;
public TestService(IdentityUserManager userManager, IDistributedCache<AbpDynamicClaimCacheItem> dynamicClaimCache)
{
_userManager = userManager;
_dynamicClaimCache = dynamicClaimCache;
}
public async Task AddToRoleAsync(Guid id)
{
var user = await _userManager.FindByIdAsync(id.ToString());
if (user == null)
{
return;
}
await _userManager.AddToRoleAsync(user, "External");
await _dynamicClaimCache.RemoveAsync(AbpDynamicClaimCacheItem.CalculateCacheKey(user.Id, user.TenantId));
}
}
}
I will check others. Thank you.
hi
We have fixed the uppy in 8.1
https://support.abp.io/QA/Questions/6369/Front-end-package-vulnerability-uppy
hi
Can you share the steps to reproduce the problem with these two projects?
Another problem is as follows; I open two different empty applications (MVC UI) and run them without changing any settings. I cannot log in to both at the same time. When I log in to one, the session in the other application is terminated.
The localhost domain will share the cookies. You can try to test your app in different browser or use a domain instead of localhost.
hi
The source code files are:
identity-pro/src/Volo.Abp.Identity.Pro.HttpApi/Volo/Abp/Identity/IdentityUserLookupController.cs
⬇️⬇️⬇️
identity-pro/src/Volo.Abp.Identity.Pro.Application/Volo/Abp/Identity/IdentityUserLookupAppService.cs
⬇️⬇️⬇️
identity-pro/src/Volo.Abp.Identity.Pro.Application/Volo/Abp/Identity/Integration/IdentityUserIntegrationService.cs
hi
Can you get the same exception on a new 8.0.5 template project?