Skip to content

Instantly share code, notes, and snippets.

@sergiutesu
Created September 21, 2022 07:36
Show Gist options
  • Select an option

  • Save sergiutesu/67aa5f905bdda06536e3012189208241 to your computer and use it in GitHub Desktop.

Select an option

Save sergiutesu/67aa5f905bdda06536e3012189208241 to your computer and use it in GitHub Desktop.
.ConfigureAuthenticationMembers() method under the Startup.cs ConfigureServices
public void ConfigureServices(IServiceCollection services)
{
services.AddUmbraco(_env, _config)
.AddBackOffice()
.AddWebsite()
.AddComposers()
.ConfigureAuthenticationMembers()
.Build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment