From 67fca93d0f80fb09e03f34b6c3fe8c21165e7e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Mon, 18 Sep 2017 13:16:17 +0300 Subject: [PATCH] Change route for RegularTestController.IncrementValue --- .../Volo/Abp/Http/DynamicProxying/RegularTestController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Volo.Abp.Http.Client.Tests/Volo/Abp/Http/DynamicProxying/RegularTestController.cs b/test/Volo.Abp.Http.Client.Tests/Volo/Abp/Http/DynamicProxying/RegularTestController.cs index b2797567ea..61f8e49b35 100644 --- a/test/Volo.Abp.Http.Client.Tests/Volo/Abp/Http/DynamicProxying/RegularTestController.cs +++ b/test/Volo.Abp.Http.Client.Tests/Volo/Abp/Http/DynamicProxying/RegularTestController.cs @@ -4,12 +4,13 @@ using Volo.Abp.AspNetCore.Mvc; namespace Volo.Abp.Http.DynamicProxying { + [Route("api/regular-test-controller")] [RemoteService] //Automatically enables API explorer and apply ABP conventions. //[ApiExplorerSettings(IgnoreApi = false)] //alternative public class RegularTestController : AbpController, IRegularTestController { [HttpGet] - [Route("api/regular-test-controller/{value}")] + [Route("increment/{value}")] public int IncrementValue(int value) { return value + 1;