Hi,
we remove ConcurrencyStamp from IdentitySession. I will refund your ticket.
https://github.com/abpframework/abp/pull/21034
Hi,
See https://abp.io/docs/latest/modules/cms-kit-pro/faq#options
In addition, codemirror script is missing from wwwroot/libs. Pages in CMS Kit Pro cannot be edited without CodeMirror.css and .js files. I Retrieved the files from codemirror.net
I could not reproduce the problem, you can try run abp install-libs to restore packages.
Hi,
Could you please share a minimal reproducible project with me? I will check it. shiwei.liang@volosoft.com
Hi,
You can add a role named PublicUser and check it in the middleware.
For example
admin project
app.UseAuthentication();
.......
app.Use(async (httpContext, next) =>
{
var currentUser = httpContext.RequestServices.GetRequiredService<ICurrentUser>();
if (currentUser.IsInRole("PublicUser"))
{
//redirect ...
return;
}
await next();
});
Hi,
I think this is a new question, could you please create a new ticket? thanks.
Hi,
I think you can set the environment value in this way.
Read from your config and set to environment
https://abp.io/docs/latest/framework/ui/angular/environment#how-to-set-the-environment