Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created March 14, 2018 14:20
Show Gist options
  • Save talkingdotnet/1c878521805b8531345aaefce4ef07b4 to your computer and use it in GitHub Desktop.
Save talkingdotnet/1c878521805b8531345aaefce4ef07b4 to your computer and use it in GitHub Desktop.
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