1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 04:03:25 +00:00
Files
server/src/Core/Services/Implementations/NoopBlockIpService.cs
2016-12-02 23:37:08 -05: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);
}
}
}