JSkimming / AspNet.Identity.EntityFramework.Multitenant

Multi-tenant support for ASP.NET Identity using Entity Framework
Apache License 2.0
132 stars 61 forks source link

Could you please include functionality to utilize the existing functions? #14

Closed NJTCS closed 9 years ago

NJTCS commented 9 years ago

GenerateEmailConfirmationToken GenerateChangePhoneNumberToken GeneratePasswordResetToken GenerateTwoFactorToken GenerateUserToken

JSkimming commented 9 years ago

@NJTCS Those methods all take UserId, which is the unique primary key of a user within the database and is globally unique across tenants.

Presumably the user has already been identified by a means that supports multi-tenancy, e.g. email or username.

Therefore once you have the UserId those methods work as before.