diff --git a/src/Core/Services/NoopImplementations/NoopLicensingService.cs b/src/Core/Services/NoopImplementations/NoopLicensingService.cs index a8fb0fce1..a9d5222e5 100644 --- a/src/Core/Services/NoopImplementations/NoopLicensingService.cs +++ b/src/Core/Services/NoopImplementations/NoopLicensingService.cs @@ -18,14 +18,9 @@ namespace Bit.Core.Services } } - public bool VerifyLicense(ILicense license) + public Task ValidateOrganizationsAsync() { - return true; - } - - public bool VerifyOrganizationPlan(Organization organization) - { - return true; + return Task.FromResult(0); } public Task ValidateUserPremiumAsync(User user) @@ -33,6 +28,11 @@ namespace Bit.Core.Services return Task.FromResult(user.Premium); } + public bool VerifyLicense(ILicense license) + { + return true; + } + public byte[] SignLicense(ILicense license) { return new byte[0];