File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,6 @@ public void ConfigureServices(IServiceCollection services)
39
39
options . LogoutPath = "/signout" ;
40
40
} )
41
41
42
- . AddApple ( options =>
43
- {
44
- options . ClientId = Configuration [ "AppleClientId" ] ;
45
- options . KeyId = Configuration [ "AppleKeyId" ] ;
46
- options . TeamId = Configuration [ "AppleTeamId" ] ;
47
- options . UsePrivateKey (
48
- ( keyId ) => HostingEnvironment . ContentRootFileProvider . GetFileInfo ( $ "AuthKey_{ keyId } .p8") ) ;
49
- } )
50
-
51
42
. AddGoogle ( options =>
52
43
{
53
44
options . ClientId = "560027070069-37ldt4kfuohhu3m495hk2j4pjp92d382.apps.googleusercontent.com" ;
@@ -67,6 +58,17 @@ public void ConfigureServices(IServiceCollection services)
67
58
options . Scope . Add ( "user:email" ) ;
68
59
} )
69
60
61
+ /*
62
+ .AddApple(options =>
63
+ {
64
+ options.ClientId = Configuration["AppleClientId"];
65
+ options.KeyId = Configuration["AppleKeyId"];
66
+ options.TeamId = Configuration["AppleTeamId"];
67
+ options.UsePrivateKey(
68
+ (keyId) => HostingEnvironment.ContentRootFileProvider.GetFileInfo($"AuthKey_{keyId}.p8"));
69
+ })
70
+ */
71
+
70
72
. AddDropbox ( options =>
71
73
{
72
74
options . ClientId = "jpk24g2uxfxe939" ;
You can’t perform that action at this time.
0 commit comments