mirror of
https://github.com/bitwarden/server
synced 2025-12-22 03:03:33 +00:00
notification hub push registration service
This commit is contained in:
13
src/Core/Services/NoopImplementations/NoopBlockIpService.cs
Normal file
13
src/Core/Services/NoopImplementations/NoopBlockIpService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user