1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 10:32:49 -05:00
Files
bitwarden/src/Core/Repositories/IMaintenanceRepository.cs
Justin Baur 231eb84e69 Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

12 lines
330 B
C#

namespace Bit.Core.Repositories
{
public interface IMaintenanceRepository
{
Task UpdateStatisticsAsync();
Task DisableCipherAutoStatsAsync();
Task RebuildIndexesAsync();
Task DeleteExpiredGrantsAsync();
Task DeleteExpiredSponsorshipsAsync(DateTime validUntilBeforeDate);
}
}