mirror of
https://github.com/bitwarden/server
synced 2025-12-17 08:43:27 +00:00
add support for storing u2f challenges
This commit is contained in:
13
src/Core/Repositories/IU2fRepository.cs
Normal file
13
src/Core/Repositories/IU2fRepository.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Models.Table;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface IU2fRepository : IRepository<U2f, int>
|
||||
{
|
||||
Task<ICollection<U2f>> GetManyByUserIdAsync(Guid userId);
|
||||
Task DeleteManyByUserIdAsync(Guid userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user