Hi,
You can check the document: https://docs.abp.io/en/abp/latest/Deployment/Configuring-OpenIddict
You need to install the Volo.Abp.Application.Services package, this is the only way.
Hi,
Currently, ABP only provide MVC UI for public site. You can create an angular template and remove the modules you don't need, make it a public website
Hi,
We will check it
Hi,
We will check it
Hi,
We will fix it in the next patch version. your ticket was refunded.
This is a temporary solution:
[ExposeServices(typeof(ChangePasswordModel))]
public class MyChangePasswordModel : ChangePasswordModel
{
public async override Task<IActionResult> OnPostAsync()
{
if (CurrentPassword == NewPassword)
{
Alerts.Warning(L["NewPasswordSameAsOld"]);
return Page();
}
return await base.OnPostAsync();
}
}
Hi,
We will check it
Hi,
You can refer to this project: https://github.com/abpframework/abp/blob/dev/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/ApiExploring/AbpApiDefinitionController_Tests.cs