#84 - Fix regression with OAuth Notifications.

This commit is contained in:
Chris Ross 2014-10-27 16:01:31 -07:00
parent 95f19407fc
commit a492b8fcbd
2 changed files with 6 additions and 1 deletions

View File

@ -18,5 +18,6 @@
}, },
"aspnetcore50": { "aspnetcore50": {
} }
} },
"webroot": "wwwroot"
} }

View File

@ -31,6 +31,10 @@ namespace Microsoft.AspNet.Builder
{ {
configureOptions(options); configureOptions(options);
} }
if (options.Notifications == null)
{
options.Notifications = new OAuthAuthenticationNotifications();
}
}) })
{ {
Name = authenticationType, Name = authenticationType,