Created
March 14, 2018 14:20
-
-
Save talkingdotnet/1c878521805b8531345aaefce4ef07b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GitHubController : ControllerBase | |
{ | |
[GitHubWebHook] | |
public IActionResult GitHub(string id, JObject data) | |
{ | |
if (!ModelState.IsValid) | |
{ | |
return BadRequest(ModelState); | |
} | |
return Ok(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment