Hi,
But from angular side, when sending application-configuration request (which includes in its response auth -> grantedPolicies to tell angular app current users' permissions, I don't see my permission granted!
You may need to custom the AbpApplicationConfigurationAppService
service
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/AbpApplicationConfigurationAppService.cs
HI.
Sorry for the confusion, I mean your app account.
https://stackoverflow.com/questions/49389306/stop-sharing-cookies-between-applications-under-same-site-id-in-iis
// your SSO project
context.Services.ConfigureApplicationCookie(options =>
{
options.Cookie.Path = "/auth"; // or /sso anything you wants
});
Configure<AbpAntiForgeryOptions>(options =>
{
options.TokenCookie.Path = "/auth";
});
Hi,
The problem is ng sends the wrong cookies to the API backend.
These cookies come from the SSO server.
you can set different cookie path for your SSO server
Hi
Can I access tenant entity on abp suite and add a navigation collection property?
No , you can't
or what is the best approach to address this?
the only way is replace package with source code to custom it.
okay shiwei.liang@volosoft.com
Hi,
How do I do that?