mirror of
https://github.com/bitwarden/server
synced 2026-01-06 02:23:51 +00: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);
|
|
}
|
|
}
|
|
}
|