Fix inconsistent REST API urls.

pull/1401/head
maliming 6 years ago
parent de8daef36e
commit 6fa00321c0

@ -10,7 +10,7 @@ namespace Volo.Abp.Identity
[RemoteService]
[Area("identity")]
[ControllerName("Role")]
[Route("api/identity/role")]
[Route("api/identity/roles")]
public class IdentityRoleController : AbpController, IIdentityRoleAppService
{
private readonly IIdentityRoleAppService _roleAppService;

@ -9,7 +9,7 @@ namespace Volo.Abp.Identity
[RemoteService]
[Area("identity")]
[ControllerName("User")]
[Route("api/identity/user")]
[Route("api/identity/users")]
public class IdentityUserController : AbpController, IIdentityUserAppService
{
private readonly IIdentityUserAppService _userAppService;

@ -9,7 +9,7 @@ namespace Volo.Abp.Identity
[RemoteService]
[Area("identity")]
[ControllerName("UserLookup")]
[Route("api/identity/user-lookup")]
[Route("api/identity/user-lookups")]
public class IdentityUserLookupController : AbpController, IIdentityUserLookupAppService
{
protected IIdentityUserLookupAppService LookupAppService { get; }

@ -7,6 +7,7 @@ namespace Volo.Abp.Identity
[RemoteService]
[Area("identity")]
[ControllerName("Profile")]
[Route("/api/identity/profiles")]
public class ProfileController : AbpController, IProfileAppService
{
private readonly IProfileAppService _profileAppService;
@ -15,16 +16,21 @@ namespace Volo.Abp.Identity
{
_profileAppService = profileAppService;
}
[HttpGet]
public Task<ProfileDto> GetAsync()
{
return _profileAppService.GetAsync();
}
[HttpPut]
public Task<ProfileDto> UpdateAsync(UpdateProfileDto input)
{
return _profileAppService.UpdateAsync(input);
}
[HttpPost]
[Route("ChangePassword")]
public Task ChangePasswordAsync(string currentPassword, string newPassword)
{
return _profileAppService.ChangePasswordAsync(currentPassword, newPassword);

@ -9,6 +9,7 @@ namespace Volo.Abp.TenantManagement
[Controller]
[RemoteService]
[Area("multi-tenancy")]
[Route("api/multi-tenancy/tenants")]
public class TenantController : AbpController, ITenantAppService //TODO: Throws exception on validation if we inherit from Controller
{
private readonly ITenantAppService _service;
@ -18,41 +19,55 @@ namespace Volo.Abp.TenantManagement
_service = service;
}
[HttpGet]
[Route("{id}")]
public virtual Task<TenantDto> GetAsync(Guid id)
{
return _service.GetAsync(id);
}
[HttpGet]
public virtual Task<PagedResultDto<TenantDto>> GetListAsync(GetTenantsInput input)
{
return _service.GetListAsync(input);
}
[HttpPost]
public virtual Task<TenantDto> CreateAsync(TenantCreateDto input)
{
return _service.CreateAsync(input);
}
[HttpPut]
[Route("{id}")]
public virtual Task<TenantDto> UpdateAsync(Guid id, TenantUpdateDto input)
{
return _service.UpdateAsync(id, input);
}
[HttpDelete]
[Route("{id}")]
public virtual Task DeleteAsync(Guid id)
{
return _service.DeleteAsync(id);
}
[HttpGet]
[Route("{id}/DefaultConnectionString")]
public Task<string> GetDefaultConnectionStringAsync(Guid id)
{
return _service.GetDefaultConnectionStringAsync(id);
}
[HttpPut]
[Route("{id}/DefaultConnectionString")]
public Task UpdateDefaultConnectionStringAsync(Guid id, string defaultConnectionString)
{
return _service.UpdateDefaultConnectionStringAsync(id, defaultConnectionString);
}
[HttpDelete]
[Route("{id}/DefaultConnectionString")]
public Task DeleteDefaultConnectionStringAsync(Guid id)
{
return _service.DeleteDefaultConnectionStringAsync(id);

Loading…
Cancel
Save