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
Do we violate the rules in terms of DDD by giving the X.HttpApi.Client reference to Y.Domain or is it a basically dependency issue that we should think about?
This violates the rules, generating a static proxy is the recommended way