1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-09 21:52:17 -05:00
2017-05-26 00:50:27 -04:00

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);
}
}
}