i tried that , didn't work, creating a self signed certificate installed it with the key still there was same error. anyways what's the difference in both procedures? any security flaw?
There is no security flaw. Using a self-signed certificate is the recommended way by openiddict.
Hi,
You can add the CompanyName to the user's claims.
https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory https://docs.abp.io/en/abp/latest/Modules/OpenIddict#updating-claims-in-access_token-and-id_token
protected override Expression> CreateFilterExpression()
{
var expression = base.CreateFilterExpression();
var companyName = currentUser.FindClaimValue("....")
if (typeof(ICompany).IsAssignableFrom(typeof(TEntity)))
{
Expression> isCompanyFilter = e => !IsCompanyFilterEnabled ||
EF.Property(e, "ICompany").where(e.CompanyName == companyName);
expression = expression == null
? isCompanyFilter
: QueryFilterExpressionHelper.CombineExpressions(expression, isCompanyFilter);
}
return expression;
}
PerfectScrollbar is too buggy on Blazor since DOM is updated dynamically. we decide removed PS for Blazor content.
Maybe related to this.
https://stackoverflow.com/questions/17840825/cryptographicexception-was-unhandled-system-cannot-find-the-specified-file/27242467#27242467
plz take remote access and let me know what's wrong so we can solve it
You can try the above solution, if it still doesn't work, I can check it remotely
I installed yarn v1.22.19 and then re-ran abp install-libs.
Could you share the output?
Hi,
Sorry for that, we have updated the document.
You can check this: https://docs.abp.io/en/commercial/8.1/guides/microservice-mongodb
Hi,
I think this is because there are unfinished jobs. hangfire will try to retry the job. this is expected behavior