mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
11 lines
296 B
C#
11 lines
296 B
C#
namespace Bit.Core.Repositories;
|
|
|
|
public interface IMaintenanceRepository
|
|
{
|
|
Task UpdateStatisticsAsync();
|
|
Task DisableCipherAutoStatsAsync();
|
|
Task RebuildIndexesAsync();
|
|
Task DeleteExpiredGrantsAsync();
|
|
Task DeleteExpiredSponsorshipsAsync(DateTime validUntilBeforeDate);
|
|
}
|