Hello
I think this is same with https://abp.io/support/questions/1271/Add-relation-between-AbpUser-to-My-Table#answer-0ef35452-cfbd-16ad-44c0-39fc57ccd99e
Can you check?
Thank you.
Hello ,
remember me
the cookies will be valid for 14 days by default.if set rememebr me cookie Expire date will show.
without set remember me session
will be invalid after close the browser
For more information you can check this similar issue https://abp.io/support/questions/5231/Reducing-the-Remember-Me-time?CurrentPage=1#answer-3a0bd55f-37b2-1f28-914f-7b52bbf16f87
you can add time as per your requirement.
Thank you.
Hello
Can you provide steps to reproudce this issue
Thank you.
Hello
If you want to force users to change their passwords, you need to enable periodic password changes and configure the related settings. You can check this document it will helps you.
Thank you.
Hello
In ABP, generating multiple tables at once is not natively supported out of the box with ABP Suite or the CLI. Both tools are designed to handle one table at a time for generating domain objects, DTOs, and CRUD pages.
If you have to Generating CRUD Pages From an Existing Database Table you can check this document
Thank you.
Hello
Can you share error and some code snippet to better assist you.
And also please check this document it will helps you.
Thank you.
Hello
In Domain-Driven Design (DDD) and the ABP framework, the Volo.ABP.Emailing
package should typically be installed in the Application layer
.
Domain Layer:
This layer contains the core business logic and domain entities. It should be free of infrastructure concerns, such as sending emails.
Application Layer:
This layer is responsible for orchestrating the application’s use cases and interacting with the domain layer. It can include services that handle sending emails, which is a cross-cutting concern. Therefore, it is appropriate to use the Volo.ABP.Emailing package here to manage email sending functionality.
Web Layer:
This layer is primarily concerned with handling HTTP requests and responses. While it may call services from the Application layer, it should not directly handle email sending logic.
Thank you.
Hello
Can you try once delete node_modules folder , yarn.lock file and run yarn
.
Thank you.