Skip to content

Instantly share code, notes, and snippets.

@mkorman
Created September 11, 2019 17:38
Show Gist options
  • Save mkorman/fc9ef27e2c7ffd31011bdd7f2d0f0c5d to your computer and use it in GitHub Desktop.
Save mkorman/fc9ef27e2c7ffd31011bdd7f2d0f0c5d to your computer and use it in GitHub Desktop.
[ApiController]
[Route("public/interactions")]
[ApiVersion("1")]
[Authorize(Policy = "Public")]
public class InteractionsController : ControllerBase
{
public InteractionsController()
{
// Configure stuff...
}
[HttpGet]
[Route("{callGuid}")]
public async Task<IActionResult> Get (Guid callGuid)
{
// Do stuff...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment