Hi,
ABP supports password aging in version 7.2.0 .
https://blog.abp.io/abp/ABP.IO-Platform-7.2-RC-Has-Been-Published https://docs.abp.io/en/commercial/latest/modules/identity/periodic-password-change
Thank you.
Is it possible to set password expiration interval (password age) (to force the user to change the password after a certain amount of time) in ABP ? I reviewed the password settings page but could not find any settings for that.
Hello bozkan ,
- you can place the icon after label like below.
<abp-button buttonType="submit" formName="book"> {{ 'AbpUi::Save' | abpLocalization }} <i class="fa fa-check"></i> </abp-button>
- If you want to manage with classes don't want separate <i> tag then
<abp-button iconClass="fa fa-save float-end me-0 ms-2 custom-margin"> {{ 'AbpUi::Save' | abpLocalization }} </abp-button>
And add this in styles.css.custom-margin { margin-top: 0.2rem !important; }
Thanks,
Thank you
Hi,
Is it possible to place the button icon on the right for abp-button?
<abp-button iconClass="fa fa-save" [disabled]="form.invalid" [loading]="isProgress" > {{ 'AbpUi::Save' | abpLocalization }} </abp-button>
Yes
Are you saying you want to have the same functionality, but using LDAPS (Secure)? separate from standard LDAP?
I need to have a special configuration per tenant, so that the tenant can choose to connect with ldap or secure ldap (ldaps).
I need to add an additional checkbox as "Use LDAPS", so I need to replace ldap settings component. But I could not see this component inside replaceable components lists (eThemeBasicComponents or eThemeLeptonComponents)
hi
What kind of the logs you got now?
BrowserInfo HttpMethod Url kube-probe/1.22 GET /health/ready kube-probe/1.22 GET /health/live
Hi,
How can we disable audit logging for health checks added like;
public void ConfigureServices(IServiceCollection services)
{
services.AddHealthChecks()
.AddSqlServer(Configuration["Data:ConnectionStrings:Sql"])
.AddRedis(Configuration["Data:ConnectionStrings:Redis"]);
}
hi
That is to say, there is no error in using
IAbpDistributedLock
manually, but there is an error in the background worker.it's weird
Yes, it looks like that. Do you have any idea what the reason might be?