#84 - Fix regression with OAuth Notifications.
This commit is contained in:
parent
95f19407fc
commit
a492b8fcbd
|
|
@ -18,5 +18,6 @@
|
|||
},
|
||||
"aspnetcore50": {
|
||||
}
|
||||
}
|
||||
},
|
||||
"webroot": "wwwroot"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@ namespace Microsoft.AspNet.Builder
|
|||
{
|
||||
configureOptions(options);
|
||||
}
|
||||
if (options.Notifications == null)
|
||||
{
|
||||
options.Notifications = new OAuthAuthenticationNotifications();
|
||||
}
|
||||
})
|
||||
{
|
||||
Name = authenticationType,
|
||||
|
|
|
|||
Loading…
Reference in New Issue