mirror of
https://github.com/bitwarden/server.git
synced 2025-05-09 21:52:17 -05:00
14 lines
289 B
C#
14 lines
289 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class NoopBlockIpService : IBlockIpService
|
|
{
|
|
public Task BlockIpAsync(string ipAddress, bool permanentBlock)
|
|
{
|
|
// Do nothing
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
}
|