remote service name implemented

pull/3269/head
Ahmet Çotur 5 years ago
parent 18617afb1e
commit 30ece769f0

@ -0,0 +1,7 @@
namespace Volo.Abp.Account
{
public static class AccountRemoteServiceConsts
{
public const string RemoteServiceName = "AbpAccount";
}
}

@ -9,11 +9,10 @@ namespace Volo.Abp.Account
typeof(AbpHttpClientModule))]
public class AbpAccountHttpApiClientModule : AbpModule
{
public const string RemoteServiceName = "Account";
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddHttpClientProxies(typeof(AbpAccountApplicationContractsModule).Assembly, RemoteServiceName);
context.Services.AddHttpClientProxies(typeof(AbpAccountApplicationContractsModule).Assembly,
AccountRemoteServiceConsts.RemoteServiceName);
}
}
}

@ -5,7 +5,7 @@ using Volo.Abp.Identity;
namespace Volo.Abp.Account
{
[RemoteService]
[RemoteService(Name = AccountRemoteServiceConsts.RemoteServiceName)]
[Area("account")]
[Route("api/account")]
public class AccountController : AbpController, IAccountAppService

@ -15,7 +15,7 @@ using IdentityUser = Volo.Abp.Identity.IdentityUser;
namespace Volo.Abp.Account.Web.Areas.Account.Controllers
{
[RemoteService]
[RemoteService(Name = AccountRemoteServiceConsts.RemoteServiceName)]
[Controller]
[ControllerName("Login")]
[Area("Account")]

Loading…
Cancel
Save