mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
11 lines
224 B
C#
11 lines
224 B
C#
namespace Bit.Core.Services;
|
|
|
|
public class NoopBlockIpService : IBlockIpService
|
|
{
|
|
public Task BlockIpAsync(string ipAddress, bool permanentBlock)
|
|
{
|
|
// Do nothing
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|