mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
16 lines
735 B
C#
16 lines
735 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IEmergencyAccessRepository : IRepository<EmergencyAccess, Guid>
|
|
{
|
|
Task<int> GetCountByGrantorIdEmailAsync(Guid grantorId, string email, bool onlyRegisteredUsers);
|
|
Task<ICollection<EmergencyAccessDetails>> GetManyDetailsByGrantorIdAsync(Guid grantorId);
|
|
Task<ICollection<EmergencyAccessDetails>> GetManyDetailsByGranteeIdAsync(Guid granteeId);
|
|
Task<EmergencyAccessDetails> GetDetailsByIdGrantorIdAsync(Guid id, Guid grantorId);
|
|
Task<ICollection<EmergencyAccessNotify>> GetManyToNotifyAsync();
|
|
Task<ICollection<EmergencyAccessDetails>> GetExpiredRecoveriesAsync();
|
|
}
|
|
}
|