Maybe in one to two weeks, you can download the source code to customize the file-management module.
hi
Here's another way:
Update the MyCompanyName.MyProjectName.Web.Public\Pages\_ViewStart.cshtml
and using the GetApplicationLayout
@using Volo.Abp.AspNetCore.Mvc.UI.Theming
@inject IThemeManager ThemeManager
@{
Layout = ThemeManager.CurrentTheme.GetApplicationLayout(); //GetPublicLayout
}
hi
You can leave your questions here.
hi
I tested it, It works after deleting some files.
https://github.com/maliming/Abp-3394/issues/1 https://github.com/maliming/Abp-3394/tree/main/src https://github.com/maliming/Abp-3394/commit/f95b70cc24ea96dc4da3b08c8a1ece5e6063dd07
hi
What's the type of the AbpClaimTypes.Name
and AbpClaimTypes.SurName
?
Check the claims of HttpContext.User
and set the types. AbpClaimTypes.Name = xx
hi
It's will available in 5.3.3. Please wait for this version. Thanks
ok, I will check it.
You can set a breakpoint to check the claims for the current identity(HttpContext.User
).
If I try to call a method from my API, passing the token in Authorization and the __tenant, the CurrentUser will be NULL.
Can you share the request info(Authorization: bearer token
) and the authentication configuration code of your API(context.Services.AddAuthentication(....)
)?