Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Created April 30, 2018 22:49
Show Gist options
  • Select an option

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

Select an option

Save wellingtonjhn/ef98761e3c039f604daa9a08ae4eccde to your computer and use it in GitHub Desktop.
Use Authentication
public class Startup
{
// ... restante do arquivo ocultado
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
// .. restante do método ocultado
app.UseAuthentication();
app.UseMvc();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment