Cleanup, get rid of warnings
This commit is contained in:
@@ -186,8 +186,9 @@ namespace Umbraco.Core.Services.Implement
|
||||
/// <param name="email">Email of the <see cref="IMembershipUser"/> to create</param>
|
||||
/// <param name="passwordValue">This value should be the encoded/encrypted/hashed value for the password that will be stored in the database</param>
|
||||
/// <param name="memberTypeAlias">Alias of the Type</param>
|
||||
/// <param name="isApproved"></param>
|
||||
/// <returns><see cref="IMember"/></returns>
|
||||
IMember IMembershipMemberService<IMember>.CreateWithIdentity(string username, string email, string passwordValue, string memberTypeAlias, bool isApproved = true)
|
||||
IMember IMembershipMemberService<IMember>.CreateWithIdentity(string username, string email, string passwordValue, string memberTypeAlias, bool isApproved)
|
||||
{
|
||||
return CreateMemberWithIdentity(username, email, username, passwordValue, memberTypeAlias, isApproved);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user