Which version will this change come in? is 9.2.2 version include this development ?
can you refund aur ticket?
our abp version is 9.1.0. but we upgrading to last version these days
Ai says : Request Module Update: You can request the maintainers of the ABP modules (such as GDPR) to update their entities to make navigation properties virtual. This is the only way to enable lazy loading proxies for those entities. so i am requesting update. Thanks
Unfortunately I still get the 400 error
Unfortunately, we could not get a result. Can you refund our ticket?
I added this code to webconfig in Blazoır and Auth server Project. ERR_BLOCKED_BY_RESPONSE error in iframe fixed. But when we login , we get 400 error.
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Content-Security-Policy" value="frame-ancestors 'self' https://mydomain.sharepoint.com"/>
<remove name="x-powered-by" />
</customHeaders>
</httpProtocol>
</system.webServer>
We do not use load balancer. We publish on iis 10.
Unfortunately I still get the same error
I will add this code in Auth server and blazor. Is it OK ?
Configure<AbpSecurityHeadersOptions>(options =>
{
options.UseContentSecurityPolicyHeader = true;
options.ContentSecurityPolicyValue = "default-src 'self' https://*.sharepoint.com; object-src 'none'; form-action 'self'; frame-ancestors 'none'";
});