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.
Yes that's the problem, thank you
Hi, i recorded the issue
https://streamable.com/103ycv
In our application Identity is not the first tab, I assumed the same for yours. You can reproduce this issue by clicking a tab other than the first one, closing the modal, then reopening it.
Hello, There was a mistake so I updated the question, sorry for the confusion. You can reproduce the bug without adding any custom features.
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.
Thank you
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 Arman,
Thank you for information.
Best regard
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?