We have a requirement to prevent assigning a user to multiple OU's. A user should only be a member of single group. Is there a way to achieve this?
I need to define some entities scoped wih Organization Units. I saw that there was an IMustHaveOrganizationUnit interface in aspnetboilerplate. But I couldn't find any interface similar in ABP. Could you please help about how to implement entities with organization id's?
https://aspnetboilerplate.com/Pages/Documents/Zero/Organization-Units#creating-an-entity-that-belongs-to-an-organization-unit
I am trying to globally catch (and modify) any exceptions occured on my ABP project and trying different methods which no one could be successful so far. One of them is using the exception handler lambda explained on https://docs.microsoft.com/en-us/aspnet/core/fundamentals/error-handling?view=aspnetcore-5.0#exception-handler-lambda. Even if I configured the lambda and throw exception in some method, the lambda method is not hit.
Following the instructions on https://docs.abp.io/en/abp/4.4/Exception-Handling#subscribing-to-the-exceptions I added an Exception Subscriber to my project, but it is not hit when exception occurs. Do I need to register MyExceptionSubscriber anywhere ? It is not stated in the documentation.
Is it possible to have the main navigation menu fixed to the top bar no matter what the screen size is. Current behavior is to move the main menu to the left side bar for some screen sizes. If it is not possible, do you have any plans for making this feature configurable in near future?
Hi , I get following error and when I check the getPasswordValidators method saw that it expects the Store type object , could you please check it too?
Argument of type 'Injector' is not assignable to parameter of type 'Store'. Type 'Injector' is missing the following properties from type 'Store': stateStream, internalStateOperations, config, internalExecutionStrategy, and 10 more.ts(2345)
Thank you
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
Hello , We use customized form component for adding new user and I want to use Abp's password validator that has configured according to password settings already. Is there any method or way to to use it for my component as well ? You can see the screenshot of the validator that I mentioned.
Thank you
Hi, I want to add my customized setting to abpSettings table so is there any entity that I can use for it?
Thanks,
Okay , so for our customized setting do I need to create new endpoint to reach it on the backend? Like ; "/api/account-admin/settings" or "/api/lepton-theme-management/settings"
Thank you