Fixed passing of default TRole.

This commit is contained in:
Josh Close
2019-02-27 23:48:07 -06:00
parent 9e3efbd7e4
commit eea7c8fff6
@@ -22,7 +22,7 @@ namespace Raven.Identity
public static IServiceCollection AddRavenDbIdentity<TUser>(this IServiceCollection services, Action<IdentityOptions> setupAction = null)
where TUser : IdentityUser
{
return AddRavenDbIdentity<TUser>(services, setupAction);
return AddRavenDbIdentity<TUser, IdentityRole>(services, setupAction);
}
/// <summary>