Created
March 14, 2018 14:20
-
-
Save talkingdotnet/76c74601f0921730c9b889c96946fb8b 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 DropBoxController : ControllerBase | |
{ | |
[DropboxWebHook] | |
public IActionResult Dropbox(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