mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	* Cleaned up error interceptor to avoid sending auth errors (when a 500 occurs) to sentry as auth errors aren't issues. * Added extra stat collection * Fixed a bad gitignore which ignored anything in a stats directory
		
			
				
	
	
		
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading.Tasks;
 | 
						|
using API.DTOs.Stats;
 | 
						|
 | 
						|
namespace API.Interfaces.Services
 | 
						|
{
 | 
						|
    public interface IStatsService
 | 
						|
    {
 | 
						|
        Task PathData(ClientInfoDto clientInfoDto);
 | 
						|
        Task FinalizeStats();
 | 
						|
        Task CollectRelevantData();
 | 
						|
        Task CollectAndSendStatsData();
 | 
						|
    }
 | 
						|
}
 |