1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 18:53:41 +00:00
Files
server/src/Core/Services/NoopImplementations/NoopBlockIpService.cs
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);
}
}
}