Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Created May 17, 2018 16:41
Show Gist options
  • Select an option

  • Save wellingtonjhn/dced5b34732220ec240e5480aecbbddd to your computer and use it in GitHub Desktop.

Select an option

Save wellingtonjhn/dced5b34732220ec240e5480aecbbddd to your computer and use it in GitHub Desktop.
Allow Anonymous Actions
[HttpPost, AllowAnonymous, Route("register")]
public async Task<IActionResult> CreateUser([FromBody] CreateUser command)
{
// ... conteúdo ocultado
}
[HttpPost, AllowAnonymous, Route("login")]
public async Task<IActionResult> Authenticate([FromBody] AuthenticateUser command)
{
// ... conteúdo ocultado
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment