mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-24 05:42:10 +08:00
#5536: Removed dependency on IContentManager from FormsAuthenticationService.
FormsAuthenticationService now uses IMembershipService instead. Also introduced a NullMembershipService implementation in Orchard.Framework, used only for dependency resolution during setup. Fixes #5536.
This commit is contained in:
@@ -15,8 +15,10 @@ using System.Collections.Generic;
|
||||
using Orchard.Services;
|
||||
using System.Web.Helpers;
|
||||
using Orchard.Environment.Configuration;
|
||||
using Orchard.Environment.Extensions;
|
||||
|
||||
namespace Orchard.Users.Services {
|
||||
[OrchardSuppressDependency("Orchard.Security.NullMembershipService")]
|
||||
public class MembershipService : IMembershipService {
|
||||
private const string PBKDF2 = "PBKDF2";
|
||||
private const string DefaultHashAlgorithm = PBKDF2;
|
||||
|
||||
Reference in New Issue
Block a user