|
|
|
|
@ -18,19 +18,19 @@ namespace Bit.Core.Services
@@ -18,19 +18,19 @@ namespace Bit.Core.Services
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool VerifyLicense(ILicense license) |
|
|
|
|
public Task ValidateOrganizationsAsync() |
|
|
|
|
{ |
|
|
|
|
return true; |
|
|
|
|
return Task.FromResult(0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool VerifyOrganizationPlan(Organization organization) |
|
|
|
|
public Task<bool> ValidateUserPremiumAsync(User user) |
|
|
|
|
{ |
|
|
|
|
return true; |
|
|
|
|
return Task.FromResult(user.Premium); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<bool> ValidateUserPremiumAsync(User user) |
|
|
|
|
public bool VerifyLicense(ILicense license) |
|
|
|
|
{ |
|
|
|
|
return Task.FromResult(user.Premium); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public byte[] SignLicense(ILicense license) |
|
|
|
|
|