Hi,
I didn't see useful information.
Can you share the full log file?
Hi,
Maybe this can help you: https://github.com/abpframework/abp/pull/16504
It's a new feature in 7.3,
Hi,
I can't reproduce the problem.
how to move the right panel to the top of the page or fixed place in the menu footer instead of the right panel, if you open it in MS. Edge browser it will display as the following which make the user confused :
I think this is the problem of the Edge browser, not the lepthonX theme.
You can hide the Edge sidebar:
Hi,
Please share the error logs. Thanks.
Hi,
You can try this.
Update Chat Service project:
"RemoteServices": {
"AbpIdentity": {
"BaseUrl": "https://localhost:44388/", Identity service URL
"UseCurrentAccessToken": "false"
}
},
"IdentityClients": {
"Default": {
"GrantType": "client_credentials",
"ClientId": "AdministrationService",
"ClientSecret": "1q2w3e*",
"Authority": "https://localhost:44322", AuthServer URL
"Scope": "IdentityService",
"RequireHttps": "true",
"ValidateIssuerName": "true",
"ValidateEndpoints ": "true"
}
},
You can create an application named
ChatServiceinstead of usingAdministrationService
<PackageReference Include="Volo.Abp.Identity.Pro.HttpApi.Client" Version="7.2.2" /> <PackageReference Include="Volo.Abp.Http.Client.IdentityModel.Web" Version="7.2.2" />
[DependsOn(typeof(AbpHttpClientIdentityModelWebModule))]
[DependsOn(typeof(AbpIdentityHttpApiClientModule))]
public class ...HttpApiHostModule : AbpModule
Please share the project with me, thanks.
ok
Under administration -> users we are missing Two factor menu option from actions.
It look like a problem, we will check it.
We are missing menus for Chat , File management. Under SasS menu->Features we are missing twon menus 1) Chat 2) File management
Did you install the Chat and File management modules? they are not pre-installed.
I didn't see you install them in the project you shared.
Hi,
You can save the password to the cache or database when changing the password.
The bottom-level method to change the password is SetPasswordHashAsync
ABP set the last password change time here, you can override the IdentityUserStore to save and get the last 3 passwords for comparison
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityUserStore.cs