Skip to content

Commit ac67b73

Browse files
test
1 parent 2ca5199 commit ac67b73

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

EssentialCSharp.Web/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,11 @@ private static void Main(string[] args)
126126
{
127127
microsoftoptions.ClientId = configuration["authentication:microsoft:clientid"] ?? throw new InvalidOperationException("authentication:microsoft:clientid unexpectedly null");
128128
microsoftoptions.ClientSecret = configuration["authentication:microsoft:clientsecret"] ?? throw new InvalidOperationException("authentication:microsoft:clientsecret unexpectedly null");
129-
microsoftoptions.CallbackPath = "/signin-microsoft";
130129
})
131130
.AddGitHub(o =>
132131
{
133132
o.ClientId = configuration["authentication:github:clientId"] ?? throw new InvalidOperationException("github:clientId unexpectedly null");
134133
o.ClientSecret = configuration["authentication:github:clientSecret"] ?? throw new InvalidOperationException("github:clientSecret unexpectedly null");
135-
o.CallbackPath = "/signin-github";
136134

137135
// Grants access to read a user's profile data.
138136
// https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps

0 commit comments

Comments
 (0)