Created
September 21, 2022 07:36
-
-
Save sergiutesu/67aa5f905bdda06536e3012189208241 to your computer and use it in GitHub Desktop.
.ConfigureAuthenticationMembers() method under the Startup.cs ConfigureServices
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 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