Skip to content

Commit 932658b

Browse files
author
Joel Mitchell
committed
Updated to Cofoundry 0.9 pre-release
1 parent 7f41921 commit 932658b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.8.0" />
18+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.8.1-ci0028" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ public async Task<IActionResult> Get([FromQuery] SearchErrorSummariesQuery query
3131
if (query == null) query = new SearchErrorSummariesQuery();
3232

3333
var results = await _queryExecutor.ExecuteAsync(query);
34-
return _apiResponseHelper.SimpleQueryResponse(this, results);
34+
return _apiResponseHelper.SimpleQueryResponse(results);
3535
}
3636

3737
public async Task<IActionResult> GetById(int errorId)
3838
{
3939
var query = new GetErrorDetailsByIdQuery(errorId);
4040
var result = await _queryExecutor.ExecuteAsync(query);
4141

42-
return _apiResponseHelper.SimpleQueryResponse(this, result);
42+
return _apiResponseHelper.SimpleQueryResponse(result);
4343
}
4444
}
4545
}

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.8.0" />
18+
<PackageReference Include="Cofoundry.Web" Version="0.8.1-ci0028" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/ErrorLoggingExample/ErrorLoggingExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.8.0" />
12+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.8.1-ci0028" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

0 commit comments

Comments
 (0)