Skip to content

Commit c738737

Browse files
committed
Updated to Cofoundry 0.3
1 parent 40720f9 commit c738737

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

src/Cofoundry.Plugins.ErrorLogging.Admin/Cofoundry.Plugins.ErrorLogging.Admin.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.2.0" />
18+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.3.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/Cofoundry.Plugins.ErrorLogging.Admin/Plugins/Admin/Api/Errors/ErrorsApiController.cs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,11 @@ namespace Cofoundry.Plugins.ErrorLogging.Admin
1313
[Route(RouteConstants.PluginApiRoutePrefix + "/Errors")]
1414
public class ErrorsApiController : BaseAdminApiController
1515
{
16-
#region private member variables
17-
1816
private const string ID_ROUTE = "{errorId:int}";
1917

2018
private readonly IQueryExecutor _queryExecutor;
2119
private readonly IApiResponseHelper _apiResponseHelper;
2220

23-
#endregion
24-
25-
#region constructor
26-
2721
public ErrorsApiController(
2822
IQueryExecutor queryExecutor,
2923
IApiResponseHelper apiResponseHelper
@@ -33,12 +27,6 @@ IApiResponseHelper apiResponseHelper
3327
_apiResponseHelper = apiResponseHelper;
3428
}
3529

36-
#endregion
37-
38-
#region routes
39-
40-
#region queries
41-
4230
[HttpGet]
4331
public async Task<IActionResult> Get([FromQuery] SearchErrorSummariesQuery query)
4432
{
@@ -56,9 +44,5 @@ public async Task<IActionResult> Get(int errorId)
5644

5745
return _apiResponseHelper.SimpleQueryResponse(this, result);
5846
}
59-
60-
#endregion
61-
62-
#endregion
6347
}
6448
}

src/Cofoundry.Plugins.ErrorLogging/Cofoundry.Plugins.ErrorLogging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web" Version="0.2.0" />
18+
<PackageReference Include="Cofoundry.Web" Version="0.3.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)