mirror of
https://github.com/bitwarden/server
synced 2025-12-16 16:23:31 +00:00
correct noop implementation
This commit is contained in:
@@ -18,14 +18,9 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool VerifyLicense(ILicense license)
|
public Task ValidateOrganizationsAsync()
|
||||||
{
|
{
|
||||||
return true;
|
return Task.FromResult(0);
|
||||||
}
|
|
||||||
|
|
||||||
public bool VerifyOrganizationPlan(Organization organization)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<bool> ValidateUserPremiumAsync(User user)
|
public Task<bool> ValidateUserPremiumAsync(User user)
|
||||||
@@ -33,6 +28,11 @@ namespace Bit.Core.Services
|
|||||||
return Task.FromResult(user.Premium);
|
return Task.FromResult(user.Premium);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool VerifyLicense(ILicense license)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public byte[] SignLicense(ILicense license)
|
public byte[] SignLicense(ILicense license)
|
||||||
{
|
{
|
||||||
return new byte[0];
|
return new byte[0];
|
||||||
|
|||||||
Reference in New Issue
Block a user