mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
15 lines
697 B
C#
15 lines
697 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();
|
|
}
|