I have enabled the Dynamic Claims feature in my application to prevent concurrent logins by adding the following configurations in HttpApiHostModule and AuthServerModule:
context.Services.Configure(options => { options.IsDynamicClaimsEnabled = true; });
app.UseDynamicClaims();
I placed app.UseDynamicClaims(); before app.UseAuthorization(); as recommended in the documentation.
However, I am facing the following issue:
When logging in as a host admin, the granted permissions are empty in the application configuration. This prevents the admin from seeing menus and accessing certain pages.
Entering the host tenant. Navigate to the feature settings of any tenant. Click on Identity and then click Cancel. Access the feature settings of that tenant again. Observed Result: The previously closed pop-up, which is the Identity section, initially appears, followed by the first tab, which is Setting Management. Expected Result: The Setting Management tab, located in the first tab, should be displayed directly.
Hello, I created a question about non-deterministic collations for postgresql few months ago. Related methods of some repositories such as EfCoreIdentityUserRepository and EfCoreIdentityRoleRepository are overriden as you suggested. EfCoreLanguageRepository methods cannot be overriden, do you have a plan to determine collations for such methods or any suggestions other than using citext?
Mentioned question: https://support.abp.io/QA/Questions/4877/Nondeterministic-Collations-cause-error-on-search-bars
Hi,
I want to customize your login page. But I want to use components separately. For example, I will use a language component under the page, use tenant component at the top of page. But I don't want to use css. Can I use your angular components as I explain and how?
Hi,
I am upgrading my npm package v2.9.0 to v3.0.5. I created custum settings page in service page.
addSettingTab({
component: MySettingsComponents,
name: 'SettingsMenu',
order: 1
});
How can I use settings tab in my npm package? Custom page link
Old and new version is not working. Which page should use this module?
this.settingTabs.add([
{
component: MySettingsComponents,
name: 'MySettingsComponents',
order: 1,
},
]);
Hi,
I want to use your themes style variables (scss, sass etc.) for creating new special page. You are supporting themes settings but i didn't find any style pages!
Hi,
After login, When I am opening new page in menu with right click or tab, Session is disconnected and redirect login page. But other pages has session.
How can we solve this bug?