mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +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);
|
|
}
|
|
}
|