Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #145 from justaprogrammer/swagger-documentation
Browse files Browse the repository at this point in the history
Document swagger
  • Loading branch information
StanleyGoldman authored Dec 10, 2018
2 parents 54ed783 + 82e9240 commit 03538f9
Showing 7 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
## Overview
**Build Cross Check** is a GitHub App and set of tools to help build servers create [Checks](https://developer.github.com/v3/checks/) in GitHub.

<img width="50%" src="docs/images/testconsole1-warning-pr-changes.png"><img width="50%" src="docs/images/testconsole1-warning-pr-check-runs.png">
<img width="80%" src="docs/images/testconsole1-error-pr-changes.png">

## Getting started

5 changes: 4 additions & 1 deletion docs/customizing.md
Original file line number Diff line number Diff line change
@@ -57,5 +57,8 @@ Here is the output generated by **BCC-MSBuildLog** for [this](https://github.com
'startedAt': '2018-12-07T08:39:22.5858425-05:00',
'sompletedAt': '2018-12-07T08:39:22.6347882-05:00'
}
```

## Submitting data

```
Check our [swagger doc](http://buildcrosscheck.azurewebsites.net/docs/index.html) for information.
Binary file modified docs/images/testconsole1-error-pr-changes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/testconsole1-error-pr-check-runs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/images/testconsole1-warning-pr-changes.png
Binary file not shown.
Binary file removed docs/images/testconsole1-warning-pr-check-runs.png
Binary file not shown.
4 changes: 2 additions & 2 deletions src/BCC.Web/Controllers/Api/TestController.cs
Original file line number Diff line number Diff line change
@@ -10,9 +10,9 @@ namespace BCC.Web.Controllers.Api
public class TestController : ApiControllerBase
{
[HttpGet]
[Route("test")]
[Route("authentication")]
[ExcludeFromCodeCoverage]
public IActionResult TestAuthentication()
public IActionResult Authentication()
{
return Json(new
{

0 comments on commit 03538f9

Please sign in to comment.